Uses of Interface
org.jooq.Sequence

Packages that use Sequence
org.jooq   
org.jooq.impl   
 

Uses of Sequence in org.jooq
 

Methods in org.jooq that return Sequence
 Sequence<?> Schema.getSequence(String name)
          Get a sequence by its name (case-sensitive) in this schema, or null if no such sequence exists
 

Methods in org.jooq that return types with arguments of type Sequence
 List<Sequence<?>> Schema.getSequences()
          List all sequences contained in this schema
 

Methods in org.jooq with parameters of type Sequence
<T extends Number>
T
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>
T
FactoryOperations.nextval(Sequence<T> sequence)
          Convenience method to fetch the NEXTVAL for a sequence directly from this Factory's underlying JDBC Connection
 

Uses of Sequence in org.jooq.impl
 

Classes in org.jooq.impl that implement Sequence
 class SequenceImpl<T extends Number>
          A common base class for sequences This type is for JOOQ INTERNAL USE only.
 

Methods in org.jooq.impl that return Sequence
 Sequence<?> SchemaImpl.getSequence(String name)
           
 

Methods in org.jooq.impl that return types with arguments of type Sequence
 List<Sequence<?>> SchemaImpl.getSequences()
          List all sequences contained in this schema
 

Methods in org.jooq.impl with parameters of type Sequence
<T extends Number>
T
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>
T
Factory.nextval(Sequence<T> sequence)
          Convenience method to fetch the NEXTVAL for a sequence directly from this Factory's underlying JDBC Connection
 



Copyright © 2012. All Rights Reserved.