| Package | Description |
|---|---|
| org.jooq |
The
org.jooq package contains jOOQ's public API
This package mostly contains interfaces that are implemented by the
org.jooq.impl package. |
| org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes
This package provides implementations for the jOOQ API from
org.jooq, whose interfaces are constructed mostly through the
Factory class, which hides implementation facts from
the public API |
| 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> |
FactoryOperations.currval(Sequence<T> sequence)
Convenience method to fetch the CURRVAL for a sequence directly from this
Factory's underlying JDBC Connection |
<T extends Number> |
FactoryOperations.nextval(Sequence<T> sequence)
Convenience method to fetch the NEXTVAL for a sequence directly from this
Factory'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> |
FactoryProxy.currval(Sequence<T> sequence)
Deprecated.
|
<T extends Number> |
Factory.currval(Sequence<T> sequence)
Convenience method to fetch the CURRVAL for a sequence directly from this
Factory's underlying JDBC Connection |
<T extends Number> |
FactoryProxy.nextval(Sequence<T> sequence)
Deprecated.
|
<T extends Number> |
Factory.nextval(Sequence<T> sequence)
Convenience method to fetch the NEXTVAL for a sequence directly from this
Factory's underlying JDBC Connection |
Copyright © 2013. All Rights Reserved.