Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes. |
Modifier and Type | Method and Description |
---|---|
Sequence<?> |
Schema.getSequence(String name)
Get a sequence by its name (case-sensitive) in this schema, or
null if no such sequence exists |
Modifier and Type | Method and Description |
---|---|
List<Sequence<?>> |
Schema.getSequences()
List all sequences contained in this schema
|
Modifier and Type | Method and Description |
---|---|
<T extends Number> |
DSLContext.currval(Sequence<T> sequence)
Convenience method to fetch the CURRVAL for a sequence directly from this
DSLContext 's underlying JDBC Connection |
<T extends Number> |
DSLContext.nextval(Sequence<T> sequence)
Convenience method to fetch the NEXTVAL for a sequence directly from this
DSLContext 's underlying JDBC Connection |
Modifier and Type | Class and Description |
---|---|
class |
SequenceImpl<T extends Number>
A common base class for sequences
This type is for JOOQ INTERNAL USE only.
|
Modifier and Type | Method and Description |
---|---|
Sequence<?> |
SchemaImpl.getSequence(String name) |
Modifier and Type | Method and Description |
---|---|
List<Sequence<?>> |
SchemaImpl.getSequences()
List all sequences contained in this schema
|
Modifier and Type | Method and Description |
---|---|
<T extends Number> |
DefaultDSLContext.currval(Sequence<T> sequence) |
<T extends Number> |
DefaultDSLContext.nextval(Sequence<T> sequence) |
Copyright © 2014. All Rights Reserved.