Uses of Class
org.apache.openjpa.jdbc.schema.Sequence
Package
Description
OpenJPA-JDBC Schema Management
OpenJPA-JDBC SQL Abstraction
-
Uses of Sequence in org.apache.openjpa.jdbc.schema
Modifier and TypeMethodDescriptionSchema.addSequence
(String name) Deprecated.Schema.addSequence
(DBIdentifier name) LazySchemaFactory.findSequence
(String name) Deprecated.LazySchemaFactory.findSequence
(DBIdentifier name) LazySchemaFactory.findSequence
(QualifiedDBIdentifier name) SchemaGroup.findSequence
(String name) Deprecated.SchemaGroup.findSequence
(DBIdentifier name) SchemaGroup.findSequence
(QualifiedDBIdentifier path) SchemaGroup.findSequence
(Schema inSchema, String name) Deprecated.SchemaGroup.findSequence
(Schema inSchema, QualifiedDBIdentifier path) SchemaGroup.findSequence
(Sequence seq) Find the equivalent of the given sequence in this schema group.Schema.getSequence
(String name) Deprecated.Schema.getSequence
(DBIdentifier name) Sequence[]
Schema.getSequences()
Return the schema's sequences.Sequence[]
XMLSchemaSerializer.getSequences()
Schema.importSequence
(Sequence seq) Import a sequence from another schema.protected Sequence
SchemaGroup.newSequence
(String name, Schema schema) Deprecated.protected Sequence
SchemaGroup.newSequence
(DBIdentifier name, Schema schema) Modifier and TypeMethodDescriptionvoid
XMLSchemaSerializer.addSequence
(Sequence seq) int
boolean
SchemaTool.createSequence
(Sequence seq) Add the given sequence to the database schema.boolean
SchemaTool.dropSequence
(Sequence seq) Drop the given sequence from the database schema.SchemaGroup.findSequence
(Sequence seq) Find the equivalent of the given sequence in this schema group.Schema.importSequence
(Sequence seq) Import a sequence from another schema.protected boolean
SchemaTool.isDroppable
(Sequence seq) Return true if the sequence is droppable.boolean
SchemaGroup.isKnownSequence
(Sequence seq) Return true if the given sequence is known to exist.boolean
Schema.removeSequence
(Sequence seq) Remove the given sequence from the schema.boolean
XMLSchemaSerializer.removeSequence
(Sequence seq) -
Uses of Sequence in org.apache.openjpa.jdbc.sql
Modifier and TypeMethodDescriptionprotected Sequence[]
DBDictionary.getSequence
(ResultSet rs) This method is to provide override for non-JDBC or JDBC-like implementation of getting sequence from the result set.Sequence[]
DBDictionary.getSequences
(DatabaseMetaData meta, String catalog, String schemaName, String sequenceName, Connection conn) Deprecated.Sequence[]
DBDictionary.getSequences
(DatabaseMetaData meta, DBIdentifier catalog, DBIdentifier schemaName, DBIdentifier sequenceName, Connection conn) protected Sequence
DBDictionary.newSequence
(ResultSet sequenceMeta) Create a new sequence from the information in the schema metadata.protected Sequence
FirebirdDictionary.newSequence
(ResultSet sequenceMeta) Call super implementation and trim sequence name.protected Sequence
IngresDictionary.newSequence
(ResultSet sequenceMeta) Overrides DBDictionary's newSequence method; trims the sequence name.Modifier and TypeMethodDescriptionDBDictionary.getAlterSequenceSQL
(Sequence seq) String[]
DBDictionary.getCreateSequenceSQL
(Sequence seq) Return a series of SQL statements to create the given sequence.String[]
FirebirdDictionary.getCreateSequenceSQL
(Sequence seq) Return eitherCREATE SEQUENCE <sequence name>
orCREATE GENERATOR <sequence name>
.String[]
DBDictionary.getDropSequenceSQL
(Sequence seq) Return a series of SQL statements to drop the given sequence.String[]
FirebirdDictionary.getDropSequenceSQL
(Sequence seq) On Firebird 1.5 returnDROP GENERATOR <sequence name>
.DBDictionary.getFullName
(Sequence seq) Returns the full name of the sequence, including the schema (delimited by the result ofDBDictionary.catalogSeparator
).