Uses of Interface
org.springframework.jdbc.core.CallableStatementCreator

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
 Object JdbcTemplate.execute(CallableStatementCreator csc, CallableStatementCallback action)
           
 Map JdbcTemplate.call(CallableStatementCreator csc, List declaredParameters)
           
 Object JdbcOperations.execute(CallableStatementCreator csc, CallableStatementCallback action)
          Execute the action specified by the given action object within a JDBC CallableStatement.
 Map JdbcOperations.call(CallableStatementCreator csc, List declaredParameters)
          Execute a SQL call using a CallableStatementCreator to provide SQL and any required parameters.
 

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.
 



Copyright (C) 2003-2004 The Spring Framework Project.