Module org.jooq
Package org.jooq

Interface BindingGetStatementContext<U>

All Superinterfaces:
Scope

public interface BindingGetStatementContext<U> extends Scope
A container type for Binding.get(BindingGetStatementContext) arguments.
Author:
Lukas Eder
  • Method Details

    • statement

      CallableStatement statement()
      The CallableStatement from which a value is retrieved.
    • index

      int index()
      The column index at which the value is retrieved.
    • value

      void value(U value)
      A callback to which the resulting value is registered.
    • convert

      <T> BindingGetStatementContext<T> convert(Converter<? super T,​? extends U> converter)
      Create a new context from this one using a converter.