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.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.
|
Modifier and Type | Method and Description |
---|---|
ResultInterface |
CommandRemote.executeQuery(int maxRows,
boolean scrollable) |
ResultInterface |
CommandInterface.executeQuery(int maxRows,
boolean scrollable)
Execute the query.
|
ResultInterface |
Command.executeQuery(int maxrows,
boolean scrollable)
Execute a query and return the result.
|
ResultInterface |
CommandRemote.getMetaData() |
ResultInterface |
CommandInterface.getMetaData()
Get an empty result set containing the meta data of the result.
|
ResultInterface |
Command.getMetaData() |
ResultInterface |
Prepared.query(int maxrows)
Execute the query.
|
ResultInterface |
CommandContainer.query(int maxrows) |
ResultInterface |
Command.query(int maxrows)
Execute a query statement, if this is possible.
|
abstract ResultInterface |
Prepared.queryMeta()
Get an empty result set containing the meta data.
|
ResultInterface |
CommandContainer.queryMeta() |
abstract ResultInterface |
Command.queryMeta()
Get an empty result set containing the meta data.
|
Modifier and Type | Method and Description |
---|---|
ResultInterface |
DefineCommand.queryMeta() |
Modifier and Type | Method and Description |
---|---|
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).
|
Modifier and Type | Method and Description |
---|---|
ResultInterface |
IndexCondition.getCurrentResult()
Get the current result of the expression.
|
Constructor and Description |
---|
ViewCursor(ViewIndex index,
ResultInterface result,
SearchRow first,
SearchRow last) |
Modifier and Type | Class and Description |
---|---|
class |
LazyResult
Lazy execution support for queries.
|
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 |
---|---|
ResultInterface |
ResultRemote.createShallowCopy(SessionInterface targetSession) |
ResultInterface |
ResultInterface.createShallowCopy(SessionInterface targetSession)
Create a shallow copy of the result set.
|
ResultInterface |
LazyResult.createShallowCopy(SessionInterface targetSession) |
ResultInterface |
ResultWithGeneratedKeys.getGeneratedKeys()
Returns generated keys, or
null . |
ResultInterface |
ResultWithGeneratedKeys.WithKeys.getGeneratedKeys() |
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.
|
WithKeys(int updateCount,
ResultInterface generatedKeys)
Creates a result with update count and generated keys.
|
Modifier and Type | Method and Description |
---|---|
ResultInterface |
TableView.getRecursiveResult() |
ResultInterface |
FunctionTable.getResult(Session session)
Read the result from the function.
|
Modifier and Type | Method and Description |
---|---|
void |
TableView.setRecursiveResult(ResultInterface value) |
Copyright © 2020 JBoss by Red Hat. All rights reserved.