Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes. |
Modifier and Type | Method and Description |
---|---|
<T> BindingSQLContext<T> |
BindingSQLContext.convert(Converter<? extends T,? super U> converter)
Create a new context from this one using a converter.
|
Modifier and Type | Method and Description |
---|---|
void |
Binding.sql(BindingSQLContext<U> ctx)
Generate SQL code for the bind variable.
|
Modifier and Type | Method and Description |
---|---|
static <T,U> Binding<T,U> |
Binding.of(Converter<T,U> converter,
java.util.function.Consumer<? super BindingSQLContext<U>> sqlContext,
java.util.function.Consumer<? super BindingGetResultSetContext<U>> getResultSetContext,
java.util.function.Consumer<? super BindingSetStatementContext<U>> setStatementContext)
Construct a binding from functions.
|
static <T,U> Binding<T,U> |
Binding.of(Converter<T,U> converter,
java.util.function.Consumer<? super BindingSQLContext<U>> sqlContext,
java.util.function.Consumer<? super BindingGetResultSetContext<U>> getResultSetContext,
java.util.function.Consumer<? super BindingSetStatementContext<U>> setStatementContext,
java.util.function.Consumer<? super BindingRegisterContext<U>> registerContext,
java.util.function.Consumer<? super BindingGetStatementContext<U>> getStatementContext)
Construct a binding from functions.
|
static <T,U> Binding<T,U> |
Binding.of(Converter<T,U> converter,
java.util.function.Consumer<? super BindingSQLContext<U>> sqlContext,
java.util.function.Consumer<? super BindingGetResultSetContext<U>> getResultSetContext,
java.util.function.Consumer<? super BindingSetStatementContext<U>> setStatementContext,
java.util.function.Consumer<? super BindingRegisterContext<U>> registerContext,
java.util.function.Consumer<? super BindingGetStatementContext<U>> getStatementContext,
java.util.function.Consumer<? super BindingGetSQLInputContext<U>> getSqlInputContext,
java.util.function.Consumer<? super BindingSetSQLOutputContext<U>> setSqlOutputContext)
Construct a binding from functions.
|
Modifier and Type | Method and Description |
---|---|
void |
BlobBinding.sql(BindingSQLContext<byte[]> ctx) |
void |
ClobBinding.sql(BindingSQLContext<java.lang.String> ctx) |
void |
DateAsTimestampBinding.sql(BindingSQLContext<java.sql.Timestamp> ctx) |
void |
DefaultBinding.sql(BindingSQLContext<U> ctx) |
Copyright © 2018. All Rights Reserved.