Uses of Class
org.h2.result.LocalResult

Packages that use LocalResult
org.h2.command This package contains the parser and the base classes for prepared SQL statements. 
org.h2.command.ddl Contains DDL (data definition language) and related SQL statements. 
org.h2.command.dml Contains DML (data manipulation language) and related SQL statements. 
org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package. 
org.h2.index Various table index implementations, as well as cursors to navigate in an index. 
org.h2.result Implementation of row and internal result sets. 
org.h2.table Classes related to a table and table meta data. 
 

Uses of LocalResult in org.h2.command
 

Methods in org.h2.command that return LocalResult
 LocalResult Command.executeQueryLocal(int maxrows)
          Execute a query and return a local result set.
 LocalResult Command.getMetaDataLocal()
           
 LocalResult Prepared.query(int maxrows)
          Execute the query.
 LocalResult CommandList.query(int maxrows)
           
 LocalResult Command.query(int maxrows)
          Execute a query statement, if this is possible.
 LocalResult CommandContainer.query(int maxrows)
           
abstract  LocalResult Prepared.queryMeta()
          Get an empty result set containing the meta data.
 LocalResult CommandList.queryMeta()
           
abstract  LocalResult Command.queryMeta()
          Get an empty result set containing the meta data.
 LocalResult CommandContainer.queryMeta()
           
 

Uses of LocalResult in org.h2.command.ddl
 

Methods in org.h2.command.ddl that return LocalResult
 LocalResult DefineCommand.queryMeta()
           
 

Uses of LocalResult in org.h2.command.dml
 

Methods in org.h2.command.dml that return LocalResult
 LocalResult ScriptCommand.query(int maxrows)
           
 LocalResult ExecuteProcedure.query(int limit)
           
 LocalResult SelectUnion.query(int limit)
           
 LocalResult Call.query(int maxrows)
           
 LocalResult ExplainPlan.query(int maxrows)
           
 LocalResult Query.query(int limit)
           
 LocalResult ScriptCommand.queryMeta()
           
 LocalResult Select.queryMeta()
           
 LocalResult TransactionCommand.queryMeta()
           
 LocalResult BackupCommand.queryMeta()
           
 LocalResult ExecuteProcedure.queryMeta()
           
 LocalResult Update.queryMeta()
           
 LocalResult Merge.queryMeta()
           
 LocalResult Set.queryMeta()
           
 LocalResult SelectUnion.queryMeta()
           
 LocalResult Insert.queryMeta()
           
 LocalResult RunScriptCommand.queryMeta()
           
 LocalResult Call.queryMeta()
           
 LocalResult ExplainPlan.queryMeta()
           
 LocalResult Delete.queryMeta()
           
 LocalResult NoOperation.queryMeta()
           
protected  LocalResult Select.queryWithoutCache(int maxRows)
           
protected  LocalResult SelectUnion.queryWithoutCache(int maxrows)
           
protected abstract  LocalResult Query.queryWithoutCache(int limit)
          Execute the query without checking the cache.
 

Uses of LocalResult in org.h2.engine
 

Methods in org.h2.engine with parameters of type LocalResult
 void Session.addTemporaryResult(LocalResult result)
          Remember the result set and close it as soon as the transaction is committed (if it needs to be closed).
 

Uses of LocalResult in org.h2.index
 

Methods in org.h2.index that return LocalResult
 LocalResult IndexCondition.getCurrentResult(Session session)
          Get the current result of the expression.
 

Uses of LocalResult in org.h2.result
 

Methods in org.h2.result that return LocalResult
 LocalResult LocalResult.createShallowCopy(Session session)
          Create a shallow copy of the result set.
static LocalResult LocalResult.read(Session session, java.sql.ResultSet rs, int maxrows)
          Construct a local result set by reading all data from a regular result set.
 

Uses of LocalResult in org.h2.table
 

Methods in org.h2.table that return LocalResult
 LocalResult FunctionTable.getResult(Session session)
          Read the result set from the function.