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.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 |
---|---|
List<TableView> |
Prepared.getCteCleanups() |
Modifier and Type | Method and Description |
---|---|
void |
Prepared.setCteCleanups(List<TableView> cteCleanups)
Set the temporary views created for CTE's.
|
Modifier and Type | Method and Description |
---|---|
void |
AlterView.setView(TableView view) |
Constructor and Description |
---|
ViewIndex(TableView view,
String querySQL,
ArrayList<Parameter> originalParameters,
boolean recursive)
Constructor for the original index in
TableView . |
ViewIndex(TableView view,
ViewIndex index,
Session session,
int[] masks,
TableFilter[] filters,
int filter,
SortOrder sortOrder)
Constructor for plan item generation.
|
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.
|
static TableView |
TableView.createTempView(Session session,
User owner,
String name,
Query query,
Query topQuery)
Create a temporary view out of the given query.
|
Modifier and Type | Method and Description |
---|---|
CopyOnWriteArrayList<TableView> |
Table.getDependentViews() |
Modifier and Type | Method and Description |
---|---|
void |
Table.addDependentView(TableView view)
Add a view to this table.
|
void |
Table.removeDependentView(TableView view)
Remove the given view from the dependent views list.
|
Copyright © 2020 JBoss by Red Hat. All rights reserved.