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
 

Classes in org.springframework.jdbc.core that implement PreparedStatementCreator
protected static class JdbcTemplate.SimplePreparedStatementCreator
          Simple adapter for PreparedStatementCreator, allowing to use a plain SQL statement.
 

Methods in org.springframework.jdbc.core that return PreparedStatementCreator
 PreparedStatementCreator PreparedStatementCreatorFactory.newPreparedStatementCreator(java.lang.Object[] params)
          Return a new PreparedStatementCreator given these parameters.
 PreparedStatementCreator PreparedStatementCreatorFactory.newPreparedStatementCreator(java.util.List params)
          Return a new PreparedStatementCreator instance given this parameters.
 

Methods in org.springframework.jdbc.core with parameters of type PreparedStatementCreator
 java.lang.Object JdbcTemplate.execute(PreparedStatementCreator psc, PreparedStatementCallback action)
           
protected  java.lang.Object JdbcTemplate.query(PreparedStatementCreator psc, PreparedStatementSetter pss, ResultSetExtractor rse)
          Query using a prepared statement, allowing for a PreparedStatementCreator and a PreparedStatementSetter.
 java.lang.Object JdbcTemplate.query(PreparedStatementCreator psc, ResultSetExtractor rse)
           
 java.util.List JdbcTemplate.query(PreparedStatementCreator psc, RowCallbackHandler rch)
           
protected  int JdbcTemplate.update(PreparedStatementCreator psc, PreparedStatementSetter pss)
           
 int JdbcTemplate.update(PreparedStatementCreator psc)
           
 java.lang.Object JdbcOperations.execute(PreparedStatementCreator psc, PreparedStatementCallback action)
          Execute the action specified by the given action object within a JDBC PreparedStatement.
 java.lang.Object JdbcOperations.query(PreparedStatementCreator psc, ResultSetExtractor rse)
          Query using a prepared statement.
 java.util.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).
 int JdbcOperations.update(PreparedStatementCreator psc)
          Issue an update using a PreparedStatementCreator to provide SQL and any required parameters.
 

Uses of PreparedStatementCreator in org.springframework.jdbc.object
 

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



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