| 程序包 | 说明 |
|---|---|
| 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.
|
| 限定符和类型 | 方法和说明 |
|---|---|
LocalResult |
SelectUnion.getEmptyResult() |
LocalResult |
Query.query(int maxrows) |
LocalResult |
SelectUnion.query(int limit,
ResultTarget target) |
protected LocalResult |
SelectUnion.queryWithoutCache(int maxRows,
ResultTarget target) |
protected LocalResult |
Select.queryWithoutCache(int maxRows,
ResultTarget target) |
protected abstract LocalResult |
Query.queryWithoutCache(int limit,
ResultTarget target)
Execute the query without checking the cache.
|
| 限定符和类型 | 方法和说明 |
|---|---|
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).
|
| 构造器和说明 |
|---|
ViewCursor(ViewIndex index,
LocalResult result,
SearchRow first,
SearchRow last) |
| 限定符和类型 | 方法和说明 |
|---|---|
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.
|
| 限定符和类型 | 方法和说明 |
|---|---|
LocalResult |
TableView.getRecursiveResult() |
| 限定符和类型 | 方法和说明 |
|---|---|
void |
TableView.setRecursiveResult(LocalResult value) |
Copyright © 2017. All rights reserved.