Uses of Interface
org.springframework.jdbc.core.CallableStatementCallback
Packages that use CallableStatementCallback
Package
Description
Provides the core JDBC framework, based on JdbcTemplate
and its associated callback interfaces and helper objects.
-
Uses of CallableStatementCallback in org.springframework.jdbc.core
Methods in org.springframework.jdbc.core with parameters of type CallableStatementCallbackModifier and TypeMethodDescription<T> T
JdbcOperations.execute
(String callString, CallableStatementCallback<T> action) Execute a JDBC data access operation, implemented as callback action working on a JDBC CallableStatement.<T> T
JdbcOperations.execute
(CallableStatementCreator csc, CallableStatementCallback<T> action) Execute a JDBC data access operation, implemented as callback action working on a JDBC CallableStatement.<T> T
JdbcTemplate.execute
(String callString, CallableStatementCallback<T> action) <T> T
JdbcTemplate.execute
(CallableStatementCreator csc, CallableStatementCallback<T> action)