Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes. |
Modifier and Type | Method and Description |
---|---|
BindContext |
BindContext.bind(Collection<? extends QueryPart> parts)
Deprecated.
- 3.2.0 - [#2666] - Use
Context.visit(QueryPart) instead |
BindContext |
BindContext.bind(QueryPart part)
Deprecated.
- 3.2.0 - [#2666] - Use
Context.visit(QueryPart) instead |
BindContext |
BindContext.bind(QueryPart[] parts)
Deprecated.
- 3.2.0 - [#2666] - Use
Context.visit(QueryPart) instead |
BindContext |
VisitContext.bindContext()
|
BindContext |
DSLContext.bindContext(PreparedStatement stmt)
Get a new
BindContext for the context of this DSLContext . |
BindContext |
BindContext.bindValue(Object value,
Class<?> type)
Deprecated.
- 3.4.0 - [#3114] - Use
bindValue(Object, Field) instead |
BindContext |
Context.bindValue(Object value,
Field<?> field)
Bind a value using a specific type.
|
BindContext |
BindContext.bindValue(Object value,
Field<?> field)
Bind a value using a specific type.
|
BindContext |
BindContext.bindValues(Object... values)
Deprecated.
- 3.4.0 - [#3114] - Use
bindValue(Object, Field) instead |
Modifier and Type | Method and Description |
---|---|
void |
QueryPartInternal.bind(BindContext ctx)
Deprecated.
- 3.4.0 - [#2694] - Use
QueryPartInternal.accept(Context) instead. |
Modifier and Type | Method and Description |
---|---|
BindContext |
DefaultDSLContext.bindContext(PreparedStatement stmt) |
Modifier and Type | Method and Description |
---|---|
void |
CustomQueryPart.bind(BindContext context)
Deprecated.
- 3.4.0 - [#2694] - Use
CustomQueryPart.accept(Context) instead. |
void |
CustomField.bind(BindContext context)
Deprecated.
- 3.4.0 - [#2694] - Use
CustomField.accept(Context) instead. |
void |
CustomCondition.bind(BindContext context)
Deprecated.
- 3.4.0 - [#2694] - Use
CustomCondition.accept(Context) instead. |
Copyright © 2015. All Rights Reserved.