Uses of Class
org.h2.command.ddl.SequenceOptions
-
Packages that use SequenceOptions 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.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. -
-
Uses of SequenceOptions in org.h2.command
Methods in org.h2.command with parameters of type SequenceOptions Modifier and Type Method Description private boolean
Parser. parseBasicSequenceOption(SequenceOptions options)
private boolean
Parser. parseSequenceOptions(SequenceOptions options, CreateSequence command, boolean allowDataType, boolean forAlterColumn)
-
Uses of SequenceOptions in org.h2.command.ddl
Fields in org.h2.command.ddl declared as SequenceOptions Modifier and Type Field Description private SequenceOptions
AlterSequence. options
private SequenceOptions
CreateSequence. options
Methods in org.h2.command.ddl with parameters of type SequenceOptions Modifier and Type Method Description void
AlterSequence. setOptions(SequenceOptions options)
void
CreateSequence. setOptions(SequenceOptions options)
-
Uses of SequenceOptions in org.h2.schema
Constructors in org.h2.schema with parameters of type SequenceOptions Constructor Description Sequence(SessionLocal session, Schema schema, int id, java.lang.String name, SequenceOptions options, boolean belongsToTable)
Creates a new sequence. -
Uses of SequenceOptions in org.h2.table
Fields in org.h2.table declared as SequenceOptions Modifier and Type Field Description private SequenceOptions
Column. identityOptions
Methods in org.h2.table that return SequenceOptions Modifier and Type Method Description SequenceOptions
Column. getIdentityOptions()
Returns identity column options, ornull
if sequence was already created or this column is not an identity column.Methods in org.h2.table with parameters of type SequenceOptions Modifier and Type Method Description void
Column. setIdentityOptions(SequenceOptions identityOptions, boolean generatedAlways)
Set the identity options of this column.
-