Uses of Class
org.apache.openjpa.jdbc.schema.Sequence
-
Packages that use Sequence Package Description org.apache.openjpa.jdbc.schema OpenJPA-JDBC Schema Managementorg.apache.openjpa.jdbc.sql OpenJPA-JDBC SQL Abstraction -
-
Uses of Sequence in org.apache.openjpa.jdbc.schema
Methods in org.apache.openjpa.jdbc.schema that return Sequence Modifier and Type Method Description SequenceSchema. addSequence(java.lang.String name)Deprecated.SequenceSchema. addSequence(DBIdentifier name)SequenceLazySchemaFactory. findSequence(java.lang.String name)Deprecated.SequenceLazySchemaFactory. findSequence(DBIdentifier name)SequenceLazySchemaFactory. findSequence(QualifiedDBIdentifier name)SequenceSchemaGroup. findSequence(java.lang.String name)Deprecated.SequenceSchemaGroup. findSequence(DBIdentifier name)SequenceSchemaGroup. findSequence(QualifiedDBIdentifier path)SequenceSchemaGroup. findSequence(Schema inSchema, java.lang.String name)Deprecated.SequenceSchemaGroup. findSequence(Schema inSchema, QualifiedDBIdentifier path)SequenceSchemaGroup. findSequence(Sequence seq)Find the equivalent of the given sequence in this schema group.SequenceSchema. getSequence(java.lang.String name)Deprecated.SequenceSchema. getSequence(DBIdentifier name)Sequence[]Schema. getSequences()Return the schema's sequences.Sequence[]XMLSchemaSerializer. getSequences()SequenceSchema. importSequence(Sequence seq)Import a sequence from another schema.protected SequenceSchemaGroup. newSequence(java.lang.String name, Schema schema)Deprecated.protected SequenceSchemaGroup. newSequence(DBIdentifier name, Schema schema)Methods in org.apache.openjpa.jdbc.schema with parameters of type Sequence Modifier and Type Method Description voidXMLSchemaSerializer. addSequence(Sequence seq)intSequence. compareTo(Sequence other)booleanSchemaTool. createSequence(Sequence seq)Add the given sequence to the database schema.booleanSchemaTool. dropSequence(Sequence seq)Drop the given sequence from the database schema.SequenceSchemaGroup. findSequence(Sequence seq)Find the equivalent of the given sequence in this schema group.SequenceSchema. importSequence(Sequence seq)Import a sequence from another schema.protected booleanSchemaTool. isDroppable(Sequence seq)Return true if the sequence is droppable.booleanSchemaGroup. isKnownSequence(Sequence seq)Return true if the given sequence is known to exist.booleanSchema. removeSequence(Sequence seq)Remove the given sequence from the schema.booleanXMLSchemaSerializer. removeSequence(Sequence seq) -
Uses of Sequence in org.apache.openjpa.jdbc.sql
Methods in org.apache.openjpa.jdbc.sql that return Sequence Modifier and Type Method Description protected Sequence[]DBDictionary. getSequence(java.sql.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(java.sql.DatabaseMetaData meta, java.lang.String catalog, java.lang.String schemaName, java.lang.String sequenceName, java.sql.Connection conn)Deprecated.Sequence[]DBDictionary. getSequences(java.sql.DatabaseMetaData meta, DBIdentifier catalog, DBIdentifier schemaName, DBIdentifier sequenceName, java.sql.Connection conn)protected SequenceDBDictionary. newSequence(java.sql.ResultSet sequenceMeta)Create a new sequence from the information in the schema metadata.protected SequenceFirebirdDictionary. newSequence(java.sql.ResultSet sequenceMeta)Call super implementation and trim sequence name.protected SequenceIngresDictionary. newSequence(java.sql.ResultSet sequenceMeta)Overrides DBDictionary's newSequence method; trims the sequence name.Methods in org.apache.openjpa.jdbc.sql with parameters of type Sequence Modifier and Type Method Description SQLBufferSQLBuffer. append(Sequence seq)java.lang.StringDBDictionary. getAlterSequenceSQL(Sequence seq)java.lang.String[]DBDictionary. getCreateSequenceSQL(Sequence seq)Return a series of SQL statements to create the given sequence.java.lang.String[]FirebirdDictionary. getCreateSequenceSQL(Sequence seq)Return eitherCREATE SEQUENCE <sequence name>orCREATE GENERATOR <sequence name>.java.lang.String[]DBDictionary. getDropSequenceSQL(Sequence seq)Return a series of SQL statements to drop the given sequence.java.lang.String[]FirebirdDictionary. getDropSequenceSQL(Sequence seq)On Firebird 1.5 returnDROP GENERATOR <sequence name>.java.lang.StringDBDictionary. getFullName(Sequence seq)Returns the full name of the sequence, including the schema (delimited by the result ofDBDictionary.catalogSeparator).
-