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

Packages that use PreparedStatementCreator
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 PreparedStatementCreator in org.springframework.jdbc.core
 

Methods in org.springframework.jdbc.core that return PreparedStatementCreator
 PreparedStatementCreator PreparedStatementCreatorFactory.newPreparedStatementCreator(Object[] params)
          Return a new PreparedStatementCreator for the given parameters.
 PreparedStatementCreator PreparedStatementCreatorFactory.newPreparedStatementCreator(List params)
          Return a new PreparedStatementCreator for the given parameters.
 

Methods in org.springframework.jdbc.core with parameters of type PreparedStatementCreator
 Object JdbcOperations.execute(PreparedStatementCreator psc, PreparedStatementCallback action)
          Execute the action specified by the given action object within a JDBC PreparedStatement.
 Object JdbcOperations.query(PreparedStatementCreator psc, ResultSetExtractor rse)
          Query using a prepared statement.
 List JdbcOperations.query(PreparedStatementCreator psc, RowCallbackHandler rch)
          Query using a prepared statement, reading the ResultSet on a per-row basis with a RowCallbackHandler (potentially implementing the ResultReader sub-interface that provides a result List).
 List JdbcOperations.query(PreparedStatementCreator psc, RowMapper rowMapper)
          Query using a prepared statement, mapping each row to a Java object via a RowMapper.
 int JdbcOperations.update(PreparedStatementCreator psc)
          Issue an update using a PreparedStatementCreator to provide SQL and any required parameters.
 int JdbcOperations.update(PreparedStatementCreator psc, KeyHolder generatedKeyHolder)
          Issue an update using a PreparedStatementCreator to provide SQL and any required parameters.
 Object JdbcTemplate.execute(PreparedStatementCreator psc, PreparedStatementCallback action)
           
protected  Object JdbcTemplate.query(PreparedStatementCreator psc, PreparedStatementSetter pss, ResultSetExtractor rse)
          Query using a prepared statement, allowing for a PreparedStatementCreator and a PreparedStatementSetter.
 Object JdbcTemplate.query(PreparedStatementCreator psc, ResultSetExtractor rse)
           
 List JdbcTemplate.query(PreparedStatementCreator psc, RowCallbackHandler rch)
           
 List JdbcTemplate.query(PreparedStatementCreator psc, RowMapper rowMapper)
           
protected  int JdbcTemplate.update(PreparedStatementCreator psc, PreparedStatementSetter pss)
           
 int JdbcTemplate.update(PreparedStatementCreator psc)
           
 int JdbcTemplate.update(PreparedStatementCreator psc, KeyHolder generatedKeyHolder)
           
 

Uses of PreparedStatementCreator in org.springframework.jdbc.object
 

Methods in org.springframework.jdbc.object that return PreparedStatementCreator
protected  PreparedStatementCreator SqlOperation.newPreparedStatementCreator(Object[] params)
          Return a PreparedStatementCreator to perform an operation with the given parameters.
 



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