Uses of Interface
org.h2.result.ResultInterface

Packages that use ResultInterface
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 ResultInterface in org.h2.command
 

Methods in org.h2.command that return ResultInterface
 ResultInterface Command.executeQuery(int maxrows, boolean scrollable)
          Execute a query and return the result.
 ResultInterface CommandInterface.executeQuery(int maxRows, boolean scrollable)
          Execute the query.
 ResultInterface CommandRemote.executeQuery(int maxRows, boolean scrollable)
           
 ResultInterface Command.getMetaData()
           
 ResultInterface CommandInterface.getMetaData()
          Get an empty result set containing the meta data of the result.
 ResultInterface CommandRemote.getMetaData()
           
 ResultInterface Command.query(int maxrows)
          Execute a query statement, if this is possible.
 ResultInterface CommandContainer.query(int maxrows)
           
 ResultInterface CommandList.query(int maxrows)
           
 ResultInterface Prepared.query(int maxrows)
          Execute the query.
abstract  ResultInterface Command.queryMeta()
          Get an empty result set containing the meta data.
 ResultInterface CommandContainer.queryMeta()
           
 ResultInterface CommandList.queryMeta()
           
abstract  ResultInterface Prepared.queryMeta()
          Get an empty result set containing the meta data.
 

Uses of ResultInterface in org.h2.command.ddl
 

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

Uses of ResultInterface in org.h2.command.dml
 

Methods in org.h2.command.dml that return ResultInterface
 ResultInterface Call.query(int maxrows)
           
 ResultInterface ExecuteProcedure.query(int limit)
           
 ResultInterface Explain.query(int maxrows)
           
 ResultInterface Query.query(int maxrows)
           
 ResultInterface ScriptCommand.query(int maxrows)
           
 ResultInterface SelectUnion.query(int limit, ResultTarget target)
           
 ResultInterface BackupCommand.queryMeta()
           
 ResultInterface Call.queryMeta()
           
 ResultInterface Delete.queryMeta()
           
 ResultInterface ExecuteProcedure.queryMeta()
           
 ResultInterface Explain.queryMeta()
           
 ResultInterface Insert.queryMeta()
           
 ResultInterface Merge.queryMeta()
           
 ResultInterface NoOperation.queryMeta()
           
 ResultInterface RunScriptCommand.queryMeta()
           
 ResultInterface ScriptCommand.queryMeta()
           
 ResultInterface Select.queryMeta()
           
 ResultInterface SelectUnion.queryMeta()
           
 ResultInterface Set.queryMeta()
           
 ResultInterface TransactionCommand.queryMeta()
           
 ResultInterface Update.queryMeta()
           
 

Uses of ResultInterface in org.h2.engine
 

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

Uses of ResultInterface in org.h2.index
 

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

Uses of ResultInterface in org.h2.result
 

Classes in org.h2.result that implement ResultInterface
 class LocalResult
          A local result set contains all row data of a result set.
 class ResultRemote
          The client side part of a result set that is kept on the server.
 

Methods in org.h2.result with parameters of type ResultInterface
static void ResultColumn.writeColumn(Transfer out, ResultInterface result, int i)
          Write a result column to the given output.
 

Constructors in org.h2.result with parameters of type ResultInterface
UpdatableRow(JdbcConnection conn, ResultInterface result)
          Construct a new object that is linked to the result set.
 

Uses of ResultInterface in org.h2.table
 

Methods in org.h2.table that return ResultInterface
 ResultInterface TableView.getRecursiveResult()
           
 

Methods in org.h2.table with parameters of type ResultInterface
 void TableView.setRecursiveResult(ResultInterface recursiveResult)