Uses of Interface
org.jooq.BindingSQLContext
-
Packages that use BindingSQLContext Package Description org.jooq Theorg.jooq
package contains jOOQ's public API.org.jooq.impl Theorg.jooq.impl
package contains jOOQ's implementation classes. -
-
Uses of BindingSQLContext in org.jooq
Methods in org.jooq that return BindingSQLContext Modifier and Type Method Description <T> BindingSQLContext<T>
BindingSQLContext. convert(Converter<? extends T,? super U> converter)
Create a new context from this one using a converter.Methods in org.jooq with parameters of type BindingSQLContext Modifier and Type Method Description void
Binding. sql(BindingSQLContext<U> ctx)
Generate SQL code for the bind variable.Method parameters in org.jooq with type arguments of type BindingSQLContext Modifier and Type Method Description static <T,U>
Binding<T,U>Binding. of(Converter<T,U> converter, Consumer<? super BindingSQLContext<U>> sqlContext, Consumer<? super BindingGetResultSetContext<U>> getResultSetContext, Consumer<? super BindingSetStatementContext<U>> setStatementContext)
Construct a binding from functions.static <T,U>
Binding<T,U>Binding. of(Converter<T,U> converter, Consumer<? super BindingSQLContext<U>> sqlContext, Consumer<? super BindingGetResultSetContext<U>> getResultSetContext, Consumer<? super BindingSetStatementContext<U>> setStatementContext, Consumer<? super BindingRegisterContext<U>> registerContext, Consumer<? super BindingGetStatementContext<U>> getStatementContext)
Construct a binding from functions.static <T,U>
Binding<T,U>Binding. of(Converter<T,U> converter, Consumer<? super BindingSQLContext<U>> sqlContext, Consumer<? super BindingGetResultSetContext<U>> getResultSetContext, Consumer<? super BindingSetStatementContext<U>> setStatementContext, Consumer<? super BindingRegisterContext<U>> registerContext, Consumer<? super BindingGetStatementContext<U>> getStatementContext, Consumer<? super BindingGetSQLInputContext<U>> getSqlInputContext, Consumer<? super BindingSetSQLOutputContext<U>> setSqlOutputContext)
Construct a binding from functions. -
Uses of BindingSQLContext in org.jooq.impl
Methods in org.jooq.impl with parameters of type BindingSQLContext Modifier and Type Method Description void
BlobBinding. sql(BindingSQLContext<byte[]> ctx)
void
ClobBinding. sql(BindingSQLContext<String> ctx)
void
DateAsTimestampBinding. sql(BindingSQLContext<Timestamp> ctx)
void
DefaultBinding. sql(BindingSQLContext<U> ctx)
void
LocalDateAsLocalDateTimeBinding. sql(BindingSQLContext<LocalDateTime> ctx)
-