- All Superinterfaces:
BindingScope
,Scope
A container type for
Binding.sql(BindingSQLContext)
arguments.- Author:
- Lukas Eder
-
Method Summary
Modifier and TypeMethodDescription<T> @NotNull BindingSQLContext<T>
Create a new context from this one using a converter.@NotNull RenderContext
render()
TheRenderContext
that contains the generated SQL and the current SQL generation state.value()
The bind value that is being rendered.@NotNull String
variable()
The variable string - mostly just a?
, or a named bind variable, such as:var
.Methods inherited from interface org.jooq.BindingScope
converterContext
Methods inherited from interface org.jooq.Scope
configuration, creationTime, data, data, data, dialect, dsl, family, settings
-
Method Details
-
render
TheRenderContext
that contains the generated SQL and the current SQL generation state. -
value
U value()The bind value that is being rendered. -
variable
The variable string - mostly just a?
, or a named bind variable, such as:var
. -
convert
Create a new context from this one using a converter.
-