Uses of Interface
org.jooq.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
Modifier 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.Modifier 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.Modifier and TypeMethodDescriptionstatic @NotNull Statement
DSL.declare
(Collection<? extends Variable<?>> variables) Create a local variable declaration for use in procedural code.