| 程序包 | 说明 |
|---|---|
| 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.table |
Classes related to a table and table meta data.
|
| 限定符和类型 | 字段和说明 |
|---|---|
protected ArrayList<Parameter> |
Prepared.parameters
The list of parameters.
|
| 限定符和类型 | 方法和说明 |
|---|---|
ArrayList<Parameter> |
Prepared.getParameters()
Get the parameter list.
|
| 限定符和类型 | 方法和说明 |
|---|---|
void |
Prepared.setParameterList(ArrayList<Parameter> parameters)
Set the parameter list of this statement.
|
void |
Parser.setSuppliedParameterList(ArrayList<Parameter> suppliedParameterList) |
| 限定符和类型 | 方法和说明 |
|---|---|
ArrayList<Parameter> |
PrepareProcedure.getParameters() |
| 限定符和类型 | 方法和说明 |
|---|---|
void |
SelectUnion.addGlobalCondition(Parameter param,
int columnId,
int comparisonType) |
void |
Select.addGlobalCondition(Parameter param,
int columnId,
int comparisonType) |
abstract void |
Query.addGlobalCondition(Parameter param,
int columnId,
int comparisonType)
Add a condition to the query.
|
| 构造器和说明 |
|---|
ViewIndex(TableView view,
String querySQL,
ArrayList<Parameter> originalParameters,
boolean recursive)
Constructor for the original index in
TableView. |
| 限定符和类型 | 方法和说明 |
|---|---|
int |
TableView.getParameterOffset(ArrayList<Parameter> additionalParameters)
Get the index of the first parameter.
|
| 构造器和说明 |
|---|
TableView(Schema schema,
int id,
String name,
String querySQL,
ArrayList<Parameter> params,
Column[] columnTemplates,
Session session,
boolean recursive) |
Copyright © 2017. All rights reserved.