Package | Description |
---|---|
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 |
---|---|
LocalResult |
SelectUnion.getEmptyResult() |
LocalResult |
Query.query(int maxrows) |
LocalResult |
SelectUnion.query(int limit,
ResultTarget target) |
protected LocalResult |
SelectUnion.queryWithoutCache(int maxRows,
ResultTarget target) |
protected abstract LocalResult |
Query.queryWithoutCache(int limit,
ResultTarget target)
Execute the query without checking the cache.
|
protected LocalResult |
Select.queryWithoutCache(int maxRows,
ResultTarget target) |
Modifier and Type | Method and Description |
---|---|
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).
|
Constructor and Description |
---|
ViewCursor(ViewIndex index,
LocalResult result,
SearchRow first,
SearchRow last) |
Modifier and Type | Method and Description |
---|---|
LocalResult |
LocalResult.createShallowCopy(Session targetSession)
Create a shallow copy of the result set.
|
static LocalResult |
LocalResult.read(Session session,
ResultSet rs,
int maxrows)
Construct a local result set by reading all data from a regular result
set.
|
Modifier and Type | Method and Description |
---|---|
LocalResult |
TableView.getRecursiveResult() |
Modifier and Type | Method and Description |
---|---|
void |
TableView.setRecursiveResult(LocalResult value) |
Copyright © 2017 JBoss by Red Hat. All rights reserved.