| 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 |
|---|---|
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. |
| Modifier and Type | Method and Description |
|---|---|
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. |
| Modifier and Type | Method and Description |
|---|---|
void |
SimpleSelectQuery.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 |
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
LIMIT or TOP clauses! |
void |
OrderProvider.addLimit(int offset,
Param<Integer> numberOfRows)
Deprecated.
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 |
SimpleSelectQuery.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 |
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
LIMIT or TOP clauses! |
void |
OrderProvider.addLimit(Param<Integer> numberOfRows)
Deprecated.
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 |
SimpleSelectQuery.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 |
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
LIMIT or TOP clauses! |
void |
OrderProvider.addLimit(Param<Integer> offset,
int numberOfRows)
Deprecated.
Limit the results of this select
Note that some dialects do not support bind values at all in
LIMIT or TOP clauses! |
void |
SimpleSelectQuery.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 |
SimpleSelectQuery.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 |
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
LIMIT or TOP clauses! |
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
LIMIT or TOP clauses! |
void |
OrderProvider.addLimit(Param<Integer> offset,
Param<Integer> numberOfRows)
Deprecated.
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)
Deprecated.
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 .. |
| Modifier and Type | Method and Description |
|---|---|
static Param<String> |
Factory.inline(char character)
Create a bind value, that is always inlined.
|
static Param<String> |
Factory.inline(Character character)
Create a bind value, that is always inlined.
|
static Param<String> |
Factory.inline(CharSequence character)
Create a bind value, that is always inlined.
|
static <T> Param<T> |
Factory.inline(Object value,
Class<? extends T> type)
Create a bind value, that is always inlined.
|
static <T> Param<T> |
Factory.inline(Object value,
DataType<T> type)
Create a bind value, that is always inlined.
|
static <T> Param<T> |
Factory.inline(Object value,
Field<T> field)
Create a bind value, that is always inlined.
|
static <T> Param<T> |
Factory.inline(T value)
Create a bind value, that is always inlined.
|
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 © 2013. All Rights Reserved.