Module org.jooq
Package org.jooq

Interface BindingSetStatementContext<U>

All Superinterfaces:
ResourceManagingScope, Scope

public interface BindingSetStatementContext<U> extends ResourceManagingScope
A container type for Binding.set(BindingSetStatementContext) arguments.
Author:
Lukas Eder
  • Method Details

    • statement

      PreparedStatement statement()
      The PreparedStatement to which a bind variable should be bound.
    • index

      int index()
      The bind variable index at which a bind variable should be bound.
    • value

      U value()
      The bind value that is being bound.
    • convert

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