java.lang.Object | ||
↳ | org.springframework.jdbc.object.RdbmsOperation | |
↳ | org.springframework.jdbc.object.SqlOperation |
![]() |
![]() |
Operation object representing a SQL-based operation such as a query or update, as opposed to a stored procedure.
Configures a PreparedStatementCreatorFactory
based on the declared parameters.
[Expand]
Inherited Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Protected Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Overridden method to configure the PreparedStatementCreatorFactory
based on our declared parameters.
| |||||||||||
Obtain a parsed representation of this operation's SQL statement.
| |||||||||||
Return a PreparedStatementCreator to perform an operation
with the given parameters.
| |||||||||||
Return a PreparedStatementCreator to perform an operation
with the given parameters.
| |||||||||||
Return a PreparedStatementSetter to perform an operation
with the given parameters.
| |||||||||||
Hook method that subclasses may override to post-process compilation.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() |
Overridden method to configure the PreparedStatementCreatorFactory based on our declared parameters.
Obtain a parsed representation of this operation's SQL statement.
Typically used for named parameter parsing.
Return a PreparedStatementCreator to perform an operation with the given parameters.
params | the parameter array (may be null )
|
---|
Return a PreparedStatementCreator to perform an operation with the given parameters.
sqlToUse | the actual SQL statement to use (if different from the factory's, for example because of named parameter expanding) |
---|---|
params | the parameter array (may be null )
|
Return a PreparedStatementSetter to perform an operation with the given parameters.
params | the parameter array (may be null )
|
---|
Hook method that subclasses may override to post-process compilation. This implementation does nothing.