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 |
---|---|
BindContext |
BindContext.bind(Collection<? extends QueryPart> parts)
Bind values from several
QueryPart 's. |
BindContext |
BindContext.bind(QueryPart part)
Bind values from a
QueryPart . |
BindContext |
BindContext.bind(QueryPart[] parts)
Bind values from several
QueryPart 's. |
BindContext |
BindContext.bindValue(Object value,
Class<?> type)
Bind a value using a specific type.
|
BindContext |
BindContext.bindValues(Object... values)
Bind several values.
|
Modifier and Type | Method and Description |
---|---|
void |
QueryPartInternal.bind(BindContext context)
Bind all parameters of this
QueryPart to a PreparedStatement
This method is for JOOQ INTERNAL USE only. |
Modifier and Type | Method and Description |
---|---|
BindContext |
Factory.bindContext(PreparedStatement stmt)
Get a new
BindContext for the context of this factory
This will return an initialised bind context as such:
RenderContext for JOOQ INTERNAL USE only. |
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) |
abstract void |
CustomField.bind(BindContext context)
Subclasses must implement this method
Bind all parameters of this QueryPart to a PreparedStatement
This method is for JOOQ INTERNAL USE only. |
abstract void |
CustomCondition.bind(BindContext context)
Subclasses must implement this method
Bind all parameters of this QueryPart to a PreparedStatement
This method is for JOOQ INTERNAL USE only. |
void |
AbstractRoutine.bind(BindContext context) |
Copyright © 2013. All Rights Reserved.