Uses of Class
com.mckoi.database.jdbc.MResultSet
-
Packages that use MResultSet Package Description com.mckoi.database.jdbc The JDBC interface to Mckoi. -
-
Uses of MResultSet in com.mckoi.database.jdbc
Fields in com.mckoi.database.jdbc declared as MResultSet Modifier and Type Field Description private MResultSetMResultSetMetaData. result_setThe parent MResultSet object.private MResultSet[]MStatement. result_set_listThe list of all MResultSet objects that represents the results of a query.Methods in com.mckoi.database.jdbc that return MResultSet Modifier and Type Method Description protected MResultSet[]MStatement. executeQueries(SQLQuery[] queries)Executes a batch of SQL queries as listed as an array.protected MResultSetMStatement. executeQuery(SQLQuery query)Executes the given SQLQuery object and fill's in at most the top 10 entries of the result set.(package private) MResultSetMStatement. internalResultSet()Returns the single ResultSet object for this statement.(package private) MResultSet[]MStatement. internalResultSetList(int count)Returns an array of ResultSet objects of the give length for this statement.Methods in com.mckoi.database.jdbc with parameters of type MResultSet Modifier and Type Method Description (package private) voidMConnection. executeQueries(SQLQuery[] queries, MResultSet[] results)Sends the batch of SQLQuery objects to the database to be executed.(package private) voidMConnection. executeQuery(SQLQuery sql, MResultSet result_set)Sends the SQL string to the database to be executed.Constructors in com.mckoi.database.jdbc with parameters of type MResultSet Constructor Description MResultSetMetaData(MResultSet result_set)Constructs the ResultSetMetaData over the given result set.
-