Package | Description |
---|---|
org.h2.command.ddl |
Contains DDL (data definition language) and related SQL statements.
|
org.h2.expression |
Expressions include mathematical operations, conditions, simple values, and functions.
|
org.h2.schema |
Schema implementation and objects that are stored in a schema (for example, sequences and constants).
|
org.h2.table |
Classes related to a table and table meta data.
|
Modifier and Type | Method and Description |
---|---|
protected ArrayList<Sequence> |
CommandWithColumns.generateSequences(ArrayList<Column> columns,
boolean temporary)
For the given list of columns, create sequences for auto-increment
columns (if needed), and then get the list of all sequences of the
columns.
|
Constructor and Description |
---|
SequenceValue(Sequence sequence) |
Modifier and Type | Method and Description |
---|---|
Sequence |
Schema.findSequence(String sequenceName)
Try to find a sequence with this name.
|
Sequence |
Schema.getSequence(String sequenceName)
Get the sequence with the given name.
|
Modifier and Type | Method and Description |
---|---|
Sequence |
Column.getSequence() |
Modifier and Type | Method and Description |
---|---|
void |
Table.addSequence(Sequence sequence)
Add a sequence to this table.
|
void |
Table.removeSequence(Sequence sequence)
Remove a sequence from the table.
|
void |
Column.setSequence(Sequence sequence) |
Copyright © 2020 JBoss by Red Hat. All rights reserved.