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 booleanParser.parseBasicSequenceOption(SequenceOptions options) private booleanParser.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 SequenceOptionsAlterSequence.optionsprivate SequenceOptionsCreateSequence.optionsMethods in org.h2.command.ddl with parameters of type SequenceOptionsModifier and TypeMethodDescriptionvoidAlterSequence.setOptions(SequenceOptions options) voidCreateSequence.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, ornullif sequence was already created or this column is not an identity column.Methods in org.h2.table with parameters of type SequenceOptionsModifier and TypeMethodDescriptionvoidColumn.setIdentityOptions(SequenceOptions identityOptions, boolean generatedAlways) Set the identity options of this column.