Uses of Interface
org.jooq.SimpleSelectLimitStep

Packages that use SimpleSelectLimitStep
org.jooq   
 

Uses of SimpleSelectLimitStep in org.jooq
 

Subinterfaces of SimpleSelectLimitStep in org.jooq
 interface SimpleSelectConditionStep<R extends Record>
          This type is used for the Select's DSL API when selecting specific Record types.
 interface SimpleSelectOrderByStep<R extends Record>
          This type is used for the Select's DSL API when selecting specific Record types.
 interface SimpleSelectWhereStep<R extends Record>
          This type is used for the Select's DSL API when selecting specific Record types.
 

Methods in org.jooq that return SimpleSelectLimitStep
 SimpleSelectLimitStep<R> SimpleSelectOrderByStep.orderBy(Collection<SortField<?>> fields)
          Add an ORDER BY clause to the query
 SimpleSelectLimitStep<R> SimpleSelectOrderByStep.orderBy(Field<?>... fields)
          Add an ORDER BY clause to the query
 SimpleSelectLimitStep<R> SimpleSelectOrderByStep.orderBy(int... fieldIndexes)
          Add an ORDER BY clause to the query Indexes start at 1 in SQL!
 SimpleSelectLimitStep<R> SimpleSelectOrderByStep.orderBy(SortField<?>... fields)
          Add an ORDER BY clause to the query
 SimpleSelectLimitStep<R> SimpleSelectOrderByStep.orderSiblingsBy(Collection<SortField<?>> fields)
          Add an ORDER SIBLINGS BY clause to the query This clause can be used only along with Oracle's CONNECT BY clause, to indicate that the hierarchical ordering should be preserved and elements of each hierarchy should be ordered among themselves.
 SimpleSelectLimitStep<R> SimpleSelectOrderByStep.orderSiblingsBy(Field<?>... fields)
          Add an ORDER SIBLINGS BY clause to the query This clause can be used only along with Oracle's CONNECT BY clause, to indicate that the hierarchical ordering should be preserved and elements of each hierarchy should be ordered among themselves.
 SimpleSelectLimitStep<R> SimpleSelectOrderByStep.orderSiblingsBy(int... fieldIndexes)
          Add an ORDER SIBLINGS BY clause to the query This clause can be used only along with Oracle's CONNECT BY clause, to indicate that the hierarchical ordering should be preserved and elements of each hierarchy should be ordered among themselves.
 SimpleSelectLimitStep<R> SimpleSelectOrderByStep.orderSiblingsBy(SortField<?>... fields)
          Add an ORDER SIBLINGS BY clause to the query This clause can be used only along with Oracle's CONNECT BY clause, to indicate that the hierarchical ordering should be preserved and elements of each hierarchy should be ordered among themselves.
 



Copyright © 2012. All Rights Reserved.