Uses of Interface
org.jooq.Context
-
Packages that use Context Package Description org.jooq Theorg.jooq
package contains jOOQ's public API.org.jooq.impl Theorg.jooq.impl
package contains jOOQ's implementation classes. -
-
Uses of Context in org.jooq
Classes in org.jooq with type parameters of type Context Modifier and Type Interface Description interface
Context<C extends Context<C>>
A context type that is used for rendering SQL or for binding.Subinterfaces of Context in org.jooq Modifier and Type Interface Description interface
BindContext
The bind context is used for bindingQueryPart
's and their contained values to aPreparedStatement
's bind variables.interface
RenderContext
The render context is used for renderingQueryPart
's to SQL.Methods in org.jooq that return Context Modifier and Type Method Description Context<?>
VisitContext. context()
The underlyingRenderContext
orBindContext
object.Methods in org.jooq with parameters of type Context Modifier and Type Method Description void
QueryPartInternal. accept(Context<?> ctx)
Deprecated.- CallingQueryPartInternal.accept(Context)
directly on aQueryPart
is almost always a mistake.Clause[]
QueryPartInternal. clauses(Context<?> ctx)
TheClause
s that are represented by this query part. -
Uses of Context in org.jooq.impl
Methods in org.jooq.impl with parameters of type Context Modifier and Type Method Description void
AbstractRoutine. accept(Context<?> ctx)
void
CatalogImpl. accept(Context<?> ctx)
void
ConvertDateTime. accept(Context<?> ctx)
abstract void
CustomCondition. accept(Context<?> ctx)
Subclasses must implement this method.abstract void
CustomField. accept(Context<?> ctx)
Subclasses must implement this method.abstract void
CustomQueryPart. accept(Context<?> ctx)
Subclasses must implement this method.void
PackageImpl. accept(Context<?> ctx)
void
SchemaImpl. accept(Context<?> ctx)
void
SequenceImpl. accept(Context<?> ctx)
void
TableImpl. accept(Context<?> ctx)
void
UDTImpl. accept(Context<?> ctx)
Clause[]
AbstractRoutine. clauses(Context<?> ctx)
Clause[]
CatalogImpl. clauses(Context<?> ctx)
Clause[]
CustomCondition. clauses(Context<?> ctx)
Clause[]
CustomField. clauses(Context<?> ctx)
Clause[]
CustomQueryPart. clauses(Context<?> ctx)
Clause[]
SchemaImpl. clauses(Context<?> ctx)
Clause[]
SequenceImpl. clauses(Context<?> ctx)
Clause[]
TableImpl. clauses(Context<?> ctx)
-