| Package | Description | 
|---|---|
| org.jooq | The  org.jooqpackage contains jOOQ's public API. | 
| org.jooq.impl | The  org.jooq.implpackage contains jOOQ's implementation classes. | 
| Modifier and Type | Method and Description | 
|---|---|
| Param<?> | DSLContext. extractParam(QueryPart part,
            String name)Get a named parameter from a  QueryPart, provided its name. | 
| Param<?> | Query. getParam(String name)Get a named parameter from the  Query, provided its name. | 
| Modifier and Type | Method and Description | 
|---|---|
| Map<String,Param<?>> | DSLContext. extractParams(QueryPart part)Get a  Mapof named parameters. | 
| Map<String,Param<?>> | Query. getParams()Get a  Mapof named parameters. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | SelectQuery. addLimit(int offset,
        Param<Integer> numberOfRows)Limit the results of this select using named parameters
 
 Note that some dialects do not support bind values at all in
  LIMITorTOPclauses! | 
| void | SelectQuery. addLimit(Param<Integer> numberOfRows)Limit the results of this select using named parameters
 
 Note that some dialects do not support bind values at all in
  LIMITorTOPclauses! | 
| void | SelectQuery. addLimit(Param<Integer> offset,
        int numberOfRows)Limit the results of this select
 
 Note that some dialects do not support bind values at all in
  LIMITorTOPclauses! | 
| void | SelectQuery. addLimit(Param<Integer> offset,
        Param<Integer> numberOfRows)Limit the results of this select using named parameters
 
 Note that some dialects do not support bind values at all in
  LIMITorTOPclauses! | 
| void | SelectQuery. addLimit(Param<Integer> offset,
        Param<Integer> numberOfRows)Limit the results of this select using named parameters
 
 Note that some dialects do not support bind values at all in
  LIMITorTOPclauses! | 
| SelectForUpdateStep<R> | SelectLimitStep. limit(int offset,
     Param<Integer> numberOfRows)Add a  LIMITclause to the query using named parameters
 
 Note that some dialects do not support bind values at all inLIMITorTOPclauses! | 
| SelectOffsetStep<R> | SelectLimitStep. limit(Param<Integer> numberOfRows)Add a  LIMITclause to the query using named parameters
 
 Note that some dialects do not support bind values at all inLIMITorTOPclauses! | 
| SelectForUpdateStep<R> | SelectLimitStep. limit(Param<Integer> offset,
     int numberOfRows)Add a  LIMITclause to the query using named parameters
 
 Note that some dialects do not support bind values at all inLIMITorTOPclauses! | 
| SelectForUpdateStep<R> | SelectLimitStep. limit(Param<Integer> offset,
     Param<Integer> numberOfRows)Add a  LIMITclause to the query using named parameters
 
 Note that some dialects do not support bind values at all inLIMITorTOPclauses! | 
| SelectForUpdateStep<R> | SelectLimitStep. limit(Param<Integer> offset,
     Param<Integer> numberOfRows)Add a  LIMITclause to the query using named parameters
 
 Note that some dialects do not support bind values at all inLIMITorTOPclauses! | 
| SelectForUpdateStep<R> | SelectOffsetStep. offset(Param<Integer> offset)Add an  OFFSETclause to the query using a named parameter
 
 If there is noLIMIT .. | 
| Modifier and Type | Method and Description | 
|---|---|
| static Param<String> | DSL. inline(char character)Create a bind value, that is always inlined. | 
| static Param<String> | DSL. inline(Character character)Create a bind value, that is always inlined. | 
| static Param<String> | DSL. inline(CharSequence character)Create a bind value, that is always inlined. | 
| static <T> Param<T> | DSL. inline(Object value,
      Class<T> type)Create a bind value, that is always inlined. | 
| static <T> Param<T> | DSL. inline(Object value,
      DataType<T> type)Create a bind value, that is always inlined. | 
| static <T> Param<T> | DSL. inline(Object value,
      Field<T> field)Create a bind value, that is always inlined. | 
| static <T> Param<T> | DSL. inline(T value)Create a bind value, that is always inlined. | 
| static Param<Object> | DSL. param(String name)Create a named parameter with a generic type ( Object/SQLDataType.OTHER) and no initial value. | 
| static <T> Param<T> | DSL. param(String name,
     Class<T> type)Create a named parameter with a defined type and no initial value. | 
| static <T> Param<T> | DSL. param(String name,
     DataType<T> type)Create a named parameter with a defined type and no initial value. | 
| static <T> Param<T> | DSL. param(String name,
     T value)Create a named parameter with an initial value. | 
| static <T> Param<T> | DSL. val(Object value,
   Class<T> type)Get a bind value with an associated type, taken from a field. | 
| static <T> Param<T> | DSL. val(Object value,
   DataType<T> type)Get a bind value with an associated type. | 
| static <T> Param<T> | DSL. val(Object value,
   Field<T> field)Get a bind value with an associated type, taken from a field. | 
| static <T> Param<T> | DSL. val(T value)Get a bind value. | 
| static <T> Param<T> | DSL. value(Object value,
     Class<T> type)A synonym for  DSL.val(Object, Class)to be used in Scala and Groovy, wherevalis a reserved keyword. | 
| static <T> Param<T> | DSL. value(Object value,
     DataType<T> type)A synonym for  DSL.val(Object, DataType)to be used in Scala and Groovy, wherevalis a reserved keyword. | 
| static <T> Param<T> | DSL. value(Object value,
     Field<T> field)A synonym for  DSL.val(Object, Field)to be used in Scala and Groovy, wherevalis a reserved keyword. | 
| static <T> Param<T> | DSL. value(T value)A synonym for  DSL.val(Object)to be used in Scala and Groovy, wherevalis a reserved keyword. | 
Copyright © 2013. All Rights Reserved.