Package | Description |
---|---|
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.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 | Method and Description |
---|---|
void |
CreateTable.setQuery(Query query) |
void |
CreateView.setSelect(Query select) |
Modifier and Type | Class and Description |
---|---|
class |
Select
This class represents a simple SELECT statement.
|
class |
SelectUnion
Represents a union SELECT statement.
|
Modifier and Type | Method and Description |
---|---|
Query |
SelectUnion.getLeft() |
Query |
SelectUnion.getRight() |
Modifier and Type | Method and Description |
---|---|
void |
Replace.setQuery(Query query) |
void |
Insert.setQuery(Query query) |
void |
Merge.setQuery(Query query) |
void |
SelectUnion.setRight(Query select) |
Constructor and Description |
---|
SelectUnion(Session session,
Query query) |
Modifier and Type | Method and Description |
---|---|
void |
Session.optimizeQueryExpression(Query query)
Optimize a query.
|
Modifier and Type | Method and Description |
---|---|
Query |
Subquery.getQuery() |
Constructor and Description |
---|
ConditionExists(Query query) |
ConditionInSelect(Database database,
Expression left,
Query query,
boolean all,
int compareType) |
Subquery(Query query) |
Modifier and Type | Method and Description |
---|---|
Query |
IndexCondition.getExpressionQuery()
Get expression query.
|
Query |
ViewIndex.getQuery() |
Modifier and Type | Method and Description |
---|---|
static IndexCondition |
IndexCondition.getInQuery(ExpressionColumn column,
Query query)
Create an index condition with the compare type IN_QUERY and with the
given parameters.
|
Modifier and Type | Method and Description |
---|---|
Query |
TableView.getTopQuery() |
Modifier and Type | Method and Description |
---|---|
static TableView |
TableView.createTempView(Session session,
User owner,
String name,
Query query,
Query topQuery)
Create a temporary view out of the given query.
|
Copyright © 2017 JBoss by Red Hat. All rights reserved.