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.expression |
Expressions include mathematical operations, conditions, simple values, and functions.
|
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.
|
Modifier and Type | Field and Description |
---|---|
protected ArrayList<Parameter> |
Prepared.parameters
The list of parameters.
|
Modifier and Type | Method and Description |
---|---|
ArrayList<Parameter> |
Prepared.getParameters()
Get the parameter list.
|
Modifier and Type | Method and Description |
---|---|
void |
Prepared.setParameterList(ArrayList<Parameter> parameters)
Set the parameter list of this statement.
|
void |
Parser.setSuppliedParameterList(ArrayList<Parameter> suppliedParameterList) |
Modifier and Type | Method and Description |
---|---|
ArrayList<Parameter> |
PrepareProcedure.getParameters() |
Modifier and Type | Method and Description |
---|---|
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.
|
Constructor and Description |
---|
ConditionInParameter(Database database,
Expression left,
Parameter parameter)
Create a new
= ANY(?) condition. |
Constructor and Description |
---|
ViewIndex(TableView view,
String querySQL,
ArrayList<Parameter> originalParameters,
boolean recursive)
Constructor for the original index in
TableView . |
Modifier and Type | Method and Description |
---|---|
static TableView |
TableView.createTableViewMaybeRecursive(Schema schema,
int id,
String name,
String querySQL,
ArrayList<Parameter> parameters,
Column[] columnTemplates,
Session session,
boolean literalsChecked,
boolean isTableExpression,
boolean isPersistent,
Database db)
Create a view.
|
int |
TableView.getParameterOffset(ArrayList<Parameter> additionalParameters)
Get the index of the first parameter.
|
Constructor and Description |
---|
TableView(Schema schema,
int id,
String name,
String querySQL,
ArrayList<Parameter> params,
Column[] columnTemplates,
Session session,
boolean allowRecursive,
boolean literalsChecked,
boolean isTableExpression,
boolean isPersistent) |
Copyright © 2020 JBoss by Red Hat. All rights reserved.