interface |
AllowUnusedBindings |
Suppresses error when bindings are created but never used in the query.
|
interface |
Bind |
Binds the annotated argument as a named parameter, and as a positional parameter.
|
interface |
BindBean |
Binds the properties of a JavaBean to a SQL statement.
|
interface |
BindBeanList |
Binds each property for each value in the annotated Iterable or array/varargs argument,
and defines a named attribute as a comma-separated list of each bound parameter name.
|
interface |
BindFields |
Binds the properties and public fields of an object to a SQL statement.
|
interface |
BindList |
Binds each value in the annotated Iterable or array/varargs argument, and defines a named attribute as a
comma-separated list of each bound parameter name.
|
interface |
BindMap |
Binds the entries of a Map<String, Object> to a SQL statement.
|
interface |
BindMethods |
|
interface |
BindMethodsList |
Binds each method for each value in the annotated Iterable or array/varargs argument,
and defines a named attribute as a comma-separated list of each bound method name.
|
interface |
BindPojo |
Binds the properties of an object to a SQL statement.
|
interface |
Define |
Defines a named attribute as the argument passed to the annotated parameter.
|
interface |
DefineList |
Defines a named attribute as a comma-separated String from the
elements of the annotated array or List argument.
|
interface |
DefineNamedBindings |
Defines all bound arguments that don't already have a definition.
|
interface |
FetchSize |
Specify batch size to fetch resulting rows in.
|
interface |
MaxRows |
Used to specify the maximum number of rows to return on a result set.
|
interface |
OutParameter |
Declare a named out parameter on an @SqlCall annotated method.
|
interface |
OutParameterList |
|
interface |
QueryTimeOut |
Specify the query timeout in seconds.
|
interface |
Timestamped |
Binds the named parameter :now or a custom named parameter with
the current DateTime as an OffsetDateTime.
|