sqlobject.statement
annotations declare the type of statement
that a SqlObject method should create, such as a @SqlQuery
to return rows or a
@SqlUpdate
to modify rows and return the modification count.See: Description
Interface | Description |
---|---|
ParameterCustomizerFactory |
Class | Description |
---|---|
BindParameterCustomizerFactory |
Standard implementation of
ParameterCustomizerFactory that delegates to
BindFactory.createForParameter(Annotation, Class, Method, Parameter, int, Type) passing null for Annotation parameter. |
Annotation Type | Description |
---|---|
BatchChunkSize |
Used to control the batch chunk size for sql batch operations.
|
GetGeneratedKeys | |
MapTo |
Used to specify a polymorphic return type as a parameter on a query method.
|
SqlBatch |
Annotate a method to indicate that it will create and execute a SQL batch.
|
SqlCall |
Support for stored proc invocation.
|
SqlQuery |
Used to indicate that a method should execute a query.
|
SqlScript |
Annotate a method to indicate that it will execute one or more SQL statements.
|
SqlScripts |
Holder for repeating
SqlScript s. |
SqlUpdate |
Used to indicate that a method should execute a non-query sql statement.
|
UseRowMapper |
Used to specify specific row mapper on a query method.
|
UseRowReducer |
Used to specify a row reducer on a result-bearing method.
|
The sqlobject.statement
annotations declare the type of statement
that a SqlObject method should create, such as a @SqlQuery
to return rows or a
@SqlUpdate
to modify rows and return the modification count.
Copyright © 2019. All rights reserved.