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

    Subinterfaces of Variable in org.jooq
    Modifier and Type
    Interface
    Description
    interface 
    A parameter to a stored procedure or function.
    Methods in org.jooq with parameters of type Variable
    Modifier and Type
    Method
    Description
    @NotNull SelectFromStep<R>
    SelectIntoStep.into​(Variable<?>... variables)
    Add a PL/SQL style INTO clause to the SELECT statement to assign the projection of a single row SELECT statement to local variables in a procedural context.
    Method parameters in org.jooq with type arguments of type Variable
    Modifier and Type
    Method
    Description
    @NotNull SelectFromStep<R>
    SelectIntoStep.into​(Collection<? extends Variable<?>> variables)
    Add a PL/SQL style INTO clause to the SELECT statement to assign the projection of a single row SELECT statement to local variables in a procedural context.
    void
    SelectQuery.setInto​(Collection<? extends Variable<?>> variables)
    Add a PL/SQL style INTO clause to the SELECT statement to assign the projection of a single row SELECT statement to local variables in a procedural context.
  • Uses of Variable in org.jooq.impl

    Methods in org.jooq.impl that return Variable
    Modifier and Type
    Method
    Description
    static <T> @NotNull Variable<T>
    DSL.var​(String name, DataType<T> type)
    Create a local variable reference for use in procedural code.
    static <T> @NotNull Variable<T>
    DSL.var​(Name name, DataType<T> type)
    Create a local variable reference for use in procedural code.
    static <T> @NotNull Variable<T>
    DSL.variable​(String name, DataType<T> type)
    A synonym for DSL.var(Name, DataType) to be used in Scala and Groovy, where var is a reserved keyword.
    static <T> @NotNull Variable<T>
    DSL.variable​(Name name, DataType<T> type)
    A synonym for DSL.var(Name, DataType) to be used in Scala and Groovy, where var is a reserved keyword.
    Methods in org.jooq.impl with parameters of type Variable
    Modifier and Type
    Method
    Description
    static @NotNull Statement
    DSL.declare​(Variable<?>... variables)
    Create a local variable declaration for use in procedural code.
    static <T> @NotNull Declaration<T>
    DSL.declare​(Variable<T> variable)
    Create a local variable declaration for use in procedural code.
    static <T> @NotNull ForInStep<T>
    DSL.for_​(Variable<T> index)
    Create a FOR loop for use in procedural code.
    Method parameters in org.jooq.impl with type arguments of type Variable
    Modifier and Type
    Method
    Description
    static @NotNull Statement
    DSL.declare​(Collection<? extends Variable<?>> variables)
    Create a local variable declaration for use in procedural code.