Uses of Interface
org.jooq.Variable
Packages that use Variable
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of Variable in org.jooq
Modifier and TypeInterfaceDescriptioninterface
Parameter<T>
A parameter to a stored procedure or function.Modifier and TypeMethodDescription@NotNull SelectFromStep
<R> Add a PL/SQL styleINTO
clause to theSELECT
statement to assign the projection of a single rowSELECT
statement to local variables in a procedural context.Modifier and TypeMethodDescription@NotNull SelectFromStep
<R> SelectIntoStep.into
(Collection<? extends Variable<?>> variables) Add a PL/SQL styleINTO
clause to theSELECT
statement to assign the projection of a single rowSELECT
statement to local variables in a procedural context.void
SelectQuery.setInto
(Collection<? extends Variable<?>> variables) Add a PL/SQL styleINTO
clause to theSELECT
statement to assign the projection of a single rowSELECT
statement to local variables in a procedural context. -
Uses of Variable in org.jooq.impl
Methods in org.jooq.impl that return VariableModifier and TypeMethodDescriptionQOM.Assignment.$variable()
QOM.Declaration.$variable()
static <T> @NotNull Variable
<T> Create a local variable reference for use in procedural code.static <T> @NotNull Variable
<T> Create a local variable reference for use in procedural code.static <T> @NotNull Variable
<T> A synonym forDSL.var(Name, DataType)
to be used in Scala and Groovy, wherevar
is a reserved keyword.static <T> @NotNull Variable
<T> A synonym forDSL.var(Name, DataType)
to be used in Scala and Groovy, wherevar
is a reserved keyword.Methods in org.jooq.impl with parameters of type VariableModifier and TypeMethodDescriptionstatic @NotNull Statement
Create a local variable declaration for use in procedural code.static <T> @NotNull Declaration
<T> Create a local variable declaration for use in procedural code.static <T> @NotNull ForInStep
<T> Create aFOR
loop for use in procedural code.Method parameters in org.jooq.impl with type arguments of type VariableModifier and TypeMethodDescriptionstatic @NotNull Statement
DSL.declare
(Collection<? extends Variable<?>> variables) Create a local variable declaration for use in procedural code.