| 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 |
|---|---|
ResultQuery<R> |
ResultQuery.bind(int index,
Object value)
Bind a new value to an indexed parameter
[#1886] If the bind value at
index is inlined (
Param.isInline()) or if this query was created with
StatementType.STATIC_STATEMENT and there is an underlying
PreparedStatement kept open because of
Query.keepStatement(boolean), the underlying
PreparedStatement will be closed automatically in order for
new bind values to have an effect. |
ResultQuery<R> |
ResultQuery.bind(String param,
Object value)
Bind a new value to a named parameter
[#1886] If the bind value with name
param is inlined (
Param.isInline()) or if this query was created with
StatementType.STATIC_STATEMENT and there is an underlying
PreparedStatement kept open because of
Query.keepStatement(boolean), the underlying
PreparedStatement will be closed automatically in order for
new bind values to have an effect. |
ResultQuery<R> |
ResultQuery.keepStatement(boolean keepStatement)
Keep the query's underlying statement open after execution
This indicates to jOOQ that the query's underlying
Statement or
PreparedStatement should be kept open after execution. |
ResultQuery<R> |
ResultQuery.maxRows(int rows)
Specify the maximum number of rows returned by the underlying
Statement
This is not the same as setting a LIMIT .. |
ResultQuery<R> |
ResultQuery.queryTimeout(int timeout)
Specify the query timeout for the underlying JDBC
Statement |
ResultQuery<Record> |
FactoryOperations.resultQuery(String sql)
Create a new query holding plain SQL.
|
ResultQuery<Record> |
FactoryOperations.resultQuery(String sql,
Object... bindings)
Create a new query holding plain SQL.
|
ResultQuery<Record> |
FactoryOperations.resultQuery(String sql,
QueryPart... parts)
Create a new query holding plain SQL.
|
| Modifier and Type | Method and Description |
|---|---|
ResultQuery<Record> |
FactoryProxy.resultQuery(String sql)
Deprecated.
|
ResultQuery<Record> |
Factory.resultQuery(String sql)
Create a new query holding plain SQL.
|
ResultQuery<Record> |
FactoryProxy.resultQuery(String sql,
Object... bindings)
Deprecated.
|
ResultQuery<Record> |
Factory.resultQuery(String sql,
Object... bindings)
Create a new query holding plain SQL.
|
ResultQuery<Record> |
FactoryProxy.resultQuery(String sql,
QueryPart... parts)
Deprecated.
|
ResultQuery<Record> |
Factory.resultQuery(String sql,
QueryPart... parts)
Create a new query holding plain SQL.
|
Copyright © 2013. All Rights Reserved.