Package | Description |
---|---|
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.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.
|
Modifier and Type | Method and Description |
---|---|
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 |
Prepared.query(int maxrows)
Execute the query.
|
ResultInterface |
CommandContainer.query(int maxrows) |
abstract ResultInterface |
Command.queryMeta()
Get an empty result set containing the meta data.
|
abstract ResultInterface |
Prepared.queryMeta()
Get an empty result set containing the meta data.
|
ResultInterface |
CommandContainer.queryMeta() |
Modifier and Type | Method and Description |
---|---|
ResultInterface |
DefineCommand.queryMeta() |
Modifier and Type | Method and Description |
---|---|
ResultInterface |
ExecuteProcedure.query(int limit) |
ResultInterface |
Call.query(int maxrows) |
ResultInterface |
Explain.query(int maxrows) |
ResultInterface |
ScriptCommand.query(int maxrows) |
ResultInterface |
RunScriptCommand.queryMeta() |
ResultInterface |
Delete.queryMeta() |
ResultInterface |
TransactionCommand.queryMeta() |
ResultInterface |
Replace.queryMeta() |
ResultInterface |
BackupCommand.queryMeta() |
ResultInterface |
ExecuteProcedure.queryMeta() |
ResultInterface |
Insert.queryMeta() |
ResultInterface |
Update.queryMeta() |
ResultInterface |
Call.queryMeta() |
ResultInterface |
Merge.queryMeta() |
ResultInterface |
Explain.queryMeta() |
ResultInterface |
SelectUnion.queryMeta() |
ResultInterface |
NoOperation.queryMeta() |
ResultInterface |
Set.queryMeta() |
ResultInterface |
Select.queryMeta() |
ResultInterface |
ScriptCommand.queryMeta() |
Modifier and Type | Method and Description |
---|---|
ResultInterface |
IndexCondition.getCurrentResult()
Get the current result of the expression.
|
Modifier and Type | Class and Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
static void |
ResultColumn.writeColumn(Transfer out,
ResultInterface result,
int i)
Write a result column to the given output.
|
Constructor and Description |
---|
UpdatableRow(JdbcConnection conn,
ResultInterface result)
Construct a new object that is linked to the result set.
|
Modifier and Type | Method and Description |
---|---|
ResultInterface |
FunctionTable.getResult(Session session)
Read the result from the function.
|
Copyright © 2017 JBoss by Red Hat. All rights reserved.