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 |
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)
Bind all parameters of this
QueryPart to a PreparedStatement
This method is for JOOQ INTERNAL USE only. |
Modifier and Type | Method and Description |
---|---|
BindContext |
DefaultDSLContext.bindContext(PreparedStatement stmt) |
Modifier and Type | Method and Description |
---|---|
void |
UDTImpl.bind(BindContext context) |
void |
TableImpl.bind(BindContext context) |
void |
SchemaImpl.bind(BindContext context) |
void |
PackageImpl.bind(BindContext context) |
void |
KeywordImpl.bind(BindContext ctx) |
void |
CustomQueryPart.bind(BindContext context)
Subclasses may implement this method
Bind all parameters of this QueryPart to a PreparedStatement
This method is for JOOQ INTERNAL USE only. |
void |
CustomField.bind(BindContext context)
Subclasses may implement this method
Bind all parameters of this QueryPart to a PreparedStatement
This method is for JOOQ INTERNAL USE only. |
void |
CustomCondition.bind(BindContext context)
Subclasses may implement this method
Bind all parameters of this QueryPart to a PreparedStatement
This method is for JOOQ INTERNAL USE only. |
void |
CatalogImpl.bind(BindContext context) |
void |
AbstractRoutine.bind(BindContext context) |
Copyright © 2014. All Rights Reserved.