public interface BindContext extends Context<BindContext>
QueryPart
's and their contained
values to a PreparedStatement
's bind variables. A new bind context is
instanciated every time a Query
is bound. QueryPart
's
will then pass the same context to their components
This interface is for JOOQ INTERNAL USE only. Do not reference directly
RenderContext
Modifier and Type | Method and Description |
---|---|
BindContext |
bind(Collection<? extends QueryPart> parts)
Deprecated.
- 3.2.0 - [#2666] - Use
Context.visit(QueryPart) instead |
BindContext |
bind(QueryPart part)
Deprecated.
- 3.2.0 - [#2666] - Use
Context.visit(QueryPart) instead |
BindContext |
bind(QueryPart[] parts)
Deprecated.
- 3.2.0 - [#2666] - Use
Context.visit(QueryPart) instead |
BindContext |
bindValue(Object value,
Class<?> type)
Deprecated.
- 3.4.0 - [#3114] - Use
bindValue(Object, Field) instead |
BindContext |
bindValue(Object value,
Field<?> field)
Bind a value using a specific type.
|
BindContext |
bindValues(Object... values)
Deprecated.
- 3.4.0 - [#3114] - Use
bindValue(Object, Field) instead |
PreparedStatement |
statement()
Retrieve the context's underlying
PreparedStatement |
configuration, data, data, data, declareFields, declareFields, declareTables, declareTables, declareWindows, declareWindows, end, nextIndex, peekIndex, start, subquery, subquery, visit
PreparedStatement statement()
PreparedStatement
@Deprecated BindContext bind(QueryPart part) throws DataAccessException
Context.visit(QueryPart)
insteadQueryPart
. This will also increment the
internal counter.DataAccessException
- If something went wrong while binding a
variable@Deprecated BindContext bind(Collection<? extends QueryPart> parts) throws DataAccessException
Context.visit(QueryPart)
insteadQueryPart
's. This will also increment
the internal counter.DataAccessException
- If something went wrong while binding a
variable@Deprecated BindContext bind(QueryPart[] parts) throws DataAccessException
Context.visit(QueryPart)
insteadQueryPart
's. This will also increment
the internal counter.DataAccessException
- If something went wrong while binding a
variable@Deprecated BindContext bindValue(Object value, Class<?> type) throws DataAccessException
bindValue(Object, Field)
insteadDataAccessException
- If something went wrong while binding a
variable@Deprecated BindContext bindValues(Object... values) throws DataAccessException
bindValue(Object, Field)
insteadDataAccessException
- If something went wrong while binding a
variableBindContext bindValue(Object value, Field<?> field) throws DataAccessException
DataAccessException
- If something went wrong while binding a
variableCopyright © 2014. All Rights Reserved.