|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Sequence | |
---|---|
org.apache.openjpa.jdbc.schema | OpenJPA-JDBC Schema Management |
org.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 | |
---|---|
Sequence |
Schema.addSequence(String name)
Add a sequence to the schema. |
Sequence |
SchemaGroup.findSequence(Schema inSchema,
String name)
Find the sequence with the given name in the group, using '.' as the catalog separator. |
Sequence |
SchemaGroup.findSequence(Sequence seq)
Find the equivalent of the given sequence in this schema group. |
Sequence |
LazySchemaFactory.findSequence(String name)
|
Sequence |
SchemaGroup.findSequence(String name)
Find the sequence with the given name in the group, using '.' as the catalog separator. |
Sequence |
Schema.getSequence(String name)
Return the sequence with the given name, or null if none. |
Sequence[] |
XMLSchemaSerializer.getSequences()
|
Sequence[] |
Schema.getSequences()
Return the schema's sequences. |
Sequence |
Schema.importSequence(Sequence seq)
Import a sequence from another schema. |
protected Sequence |
SchemaGroup.newSequence(String name,
Schema schema)
Return a new sequence with the given name and owner schema. |
Methods in org.apache.openjpa.jdbc.schema with parameters of type Sequence | |
---|---|
void |
XMLSchemaSerializer.addSequence(Sequence seq)
|
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. |
Sequence |
SchemaGroup.findSequence(Sequence seq)
Find the equivalent of the given sequence in this schema group. |
Sequence |
Schema.importSequence(Sequence seq)
Import a sequence from another schema. |
boolean |
SchemaGroup.isKnownSequence(Sequence seq)
Return true if the given sequence is known to exist. |
boolean |
XMLSchemaSerializer.removeSequence(Sequence seq)
|
boolean |
Schema.removeSequence(Sequence seq)
Remove the given sequence from the schema. |
Uses of Sequence in org.apache.openjpa.jdbc.sql |
---|
Methods in org.apache.openjpa.jdbc.sql that return Sequence | |
---|---|
Sequence[] |
DBDictionary.getSequences(DatabaseMetaData meta,
String catalog,
String schemaName,
String sequenceName,
Connection conn)
Reflect on the schema to find sequences matching the given name pattern. |
protected Sequence |
DBDictionary.newSequence(ResultSet sequenceMeta)
Create a new sequence from the information in the schema metadata. |
Methods in org.apache.openjpa.jdbc.sql with parameters of type Sequence | |
---|---|
SQLBuffer |
SQLBuffer.append(Sequence seq)
|
String[] |
OracleDictionary.getCreateSequenceSQL(Sequence seq)
|
String[] |
PostgresDictionary.getCreateSequenceSQL(Sequence seq)
|
String[] |
DB2Dictionary.getCreateSequenceSQL(Sequence seq)
|
String[] |
DBDictionary.getCreateSequenceSQL(Sequence seq)
Return a series of SQL statements to create the given sequence. |
String[] |
DBDictionary.getDropSequenceSQL(Sequence seq)
Return a series of SQL statements to drop the given sequence. |
String |
DBDictionary.getFullName(Sequence seq)
Returns the full name of the sequence, including the schema (delimited by the result of DBDictionary.catalogSeparator ). |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |