Uses of Class
org.h2.command.ddl.SequenceOptions
Packages that use SequenceOptions
Package
Description
This package contains the parser and the base classes for prepared SQL statements.
Contains DDL (data definition language) and related SQL statements.
Schema implementation and objects that are stored in a schema (for example, sequences and constants).
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 SequenceOptionsModifier and TypeMethodDescriptionprivate 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 SequenceOptionsModifier and TypeFieldDescriptionprivate SequenceOptions
AlterSequence.options
private SequenceOptions
CreateSequence.options
Methods in org.h2.command.ddl with parameters of type SequenceOptionsModifier and TypeMethodDescriptionvoid
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 SequenceOptionsModifierConstructorDescriptionSequence
(SessionLocal session, Schema schema, int id, String name, SequenceOptions options, boolean belongsToTable) Creates a new sequence. -
Uses of SequenceOptions in org.h2.table
Fields in org.h2.table declared as SequenceOptionsMethods in org.h2.table that return SequenceOptionsModifier and TypeMethodDescriptionColumn.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 SequenceOptionsModifier and TypeMethodDescriptionvoid
Column.setIdentityOptions
(SequenceOptions identityOptions, boolean generatedAlways) Set the identity options of this column.