Module org.jooq
Package org.jooq

Interface BindingSQLContext<U>

    • Method Detail

      • value

        U value()
        The bind value that is being rendered.
      • variable

        String variable()
        The variable string - mostly just a ?, or a named bind variable, such as :var.
      • convert

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