|
The Spring Framework | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use CallableStatementCreator | |
---|---|
org.springframework.jdbc.core | Provides the core JDBC framework, based on JdbcTemplate and its associated callback interfaces and helper objects. |
org.springframework.jdbc.object | The classes in this package represent RDBMS queries, updates, and stored procedures as threadsafe, reusable objects. |
Uses of CallableStatementCreator in org.springframework.jdbc.core |
---|
Methods in org.springframework.jdbc.core that return CallableStatementCreator | |
---|---|
CallableStatementCreator |
CallableStatementCreatorFactory.newCallableStatementCreator(Map inParams)
Return a new CallableStatementCreator instance given this parameters. |
CallableStatementCreator |
CallableStatementCreatorFactory.newCallableStatementCreator(ParameterMapper inParamMapper)
Return a new CallableStatementCreator instance given this parameter mapper. |
Methods in org.springframework.jdbc.core with parameters of type CallableStatementCreator | |
---|---|
Map |
JdbcTemplate.call(CallableStatementCreator csc,
List declaredParameters)
|
Map |
JdbcOperations.call(CallableStatementCreator csc,
List declaredParameters)
Execute a SQL call using a CallableStatementCreator to provide SQL and any required parameters. |
Object |
JdbcTemplate.execute(CallableStatementCreator csc,
CallableStatementCallback action)
|
Object |
JdbcOperations.execute(CallableStatementCreator csc,
CallableStatementCallback action)
Execute a JDBC data access operation, implemented as callback action working on a JDBC CallableStatement. |
Uses of CallableStatementCreator in org.springframework.jdbc.object |
---|
Methods in org.springframework.jdbc.object that return CallableStatementCreator | |
---|---|
protected CallableStatementCreator |
SqlCall.newCallableStatementCreator(Map inParams)
Return a CallableStatementCreator to perform an operation with this parameters. |
protected CallableStatementCreator |
SqlCall.newCallableStatementCreator(ParameterMapper inParamMapper)
Return a CallableStatementCreator to perform an operation with the parameters returned from this ParameterMapper. |
|
The Spring Framework | |||||||||
PREV NEXT | FRAMES NO FRAMES |