Uses of Interface
org.jooq.Param

Packages that use Param
org.jooq   
org.jooq.impl   
 

Uses of Param in org.jooq
 

Methods in org.jooq that return Param
 Param<?> QueryPartInternal.getParam(String name)
          Retrieve a named parameter that will be bound by this QueryPart This method is exposed publicly in Query.getParam(String)
 Param<?> Query.getParam(String name)
          Get a named parameter from the Query, provided its name.
 

Methods in org.jooq that return types with arguments of type Param
 Map<String,Param<?>> QueryPartInternal.getParams()
          Retrieve the named parameters that will be bound by this QueryPart This method is exposed publicly in Query.getParams()
 Map<String,Param<?>> Query.getParams()
          Get a Map of named parameters.
 

Methods in org.jooq with parameters of type Param
 void OrderProvider.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 LIMIT or TOP clauses!
 void OrderProvider.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 LIMIT or TOP clauses!
 void OrderProvider.addLimit(Param<Integer> offset, int numberOfRows)
          Limit the results of this select Note that some dialects do not support bind values at all in LIMIT or TOP clauses!
 void OrderProvider.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 LIMIT or TOP clauses!
 void OrderProvider.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 LIMIT or TOP clauses!
 SimpleSelectForUpdateStep<R> SimpleSelectLimitStep.limit(int offset, Param<Integer> numberOfRows)
          Add a LIMIT clause to the query using named parameters Note that some dialects do not support bind values at all in LIMIT or TOP clauses!
 SelectForUpdateStep SelectLimitStep.limit(int offset, Param<Integer> numberOfRows)
          Add a LIMIT clause to the query using named parameters Note that some dialects do not support bind values at all in LIMIT or TOP clauses!
 SimpleSelectOffsetStep<R> SimpleSelectLimitStep.limit(Param<Integer> numberOfRows)
          Add a LIMIT clause to the query using named parameters Note that some dialects do not support bind values at all in LIMIT or TOP clauses!
 SelectOffsetStep SelectLimitStep.limit(Param<Integer> numberOfRows)
          Add a LIMIT clause to the query using named parameters Note that some dialects do not support bind values at all in LIMIT or TOP clauses!
 SimpleSelectForUpdateStep<R> SimpleSelectLimitStep.limit(Param<Integer> offset, int numberOfRows)
          Add a LIMIT clause to the query using named parameters Note that some dialects do not support bind values at all in LIMIT or TOP clauses!
 SelectForUpdateStep SelectLimitStep.limit(Param<Integer> offset, int numberOfRows)
          Add a LIMIT clause to the query using named parameters Note that some dialects do not support bind values at all in LIMIT or TOP clauses!
 SimpleSelectForUpdateStep<R> SimpleSelectLimitStep.limit(Param<Integer> offset, Param<Integer> numberOfRows)
          Add a LIMIT clause to the query using named parameters Note that some dialects do not support bind values at all in LIMIT or TOP clauses!
 SimpleSelectForUpdateStep<R> SimpleSelectLimitStep.limit(Param<Integer> offset, Param<Integer> numberOfRows)
          Add a LIMIT clause to the query using named parameters Note that some dialects do not support bind values at all in LIMIT or TOP clauses!
 SelectForUpdateStep SelectLimitStep.limit(Param<Integer> offset, Param<Integer> numberOfRows)
          Add a LIMIT clause to the query using named parameters Note that some dialects do not support bind values at all in LIMIT or TOP clauses!
 SelectForUpdateStep SelectLimitStep.limit(Param<Integer> offset, Param<Integer> numberOfRows)
          Add a LIMIT clause to the query using named parameters Note that some dialects do not support bind values at all in LIMIT or TOP clauses!
 SimpleSelectForUpdateStep<R> SimpleSelectOffsetStep.offset(Param<Integer> offset)
          Add an OFFSET clause to the query using a named parameter If there is no LIMIT ..
 SelectForUpdateStep SelectOffsetStep.offset(Param<Integer> offset)
          Add an OFFSET clause to the query using a named parameter If there is no LIMIT ..
 

Uses of Param in org.jooq.impl
 

Methods in org.jooq.impl that return Param
static Param<Object> Factory.param(String name)
          Create a named parameter with a generic type (Object / SQLDataType.OTHER) and no initial value.
static
<T> Param<T>
Factory.param(String name, Class<? extends T> type)
          Create a named parameter with a defined type and no initial value.
static
<T> Param<T>
Factory.param(String name, DataType<T> type)
          Create a named parameter with a defined type and no initial value.
static
<T> Param<T>
Factory.param(String name, T value)
          Create a named parameter with an initial value.
 



Copyright © 2012. All Rights Reserved.