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

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

Subinterfaces of RowCallbackHandler in org.springframework.jdbc.core
 interface ResultReader
          Extension of RowCallbackHandler interfaces that saves the accumulated results as a List.
 

Classes in org.springframework.jdbc.core that implement RowCallbackHandler
 class RowCountCallbackHandler
          Implementation of RowCallbackHandler.
protected static class SqlParameter.ResultReaderStoredProcImpl
          Implementation of ResultReader that calls the supplied RowMapper class's mapRow() method for each row.
 

Methods in org.springframework.jdbc.core that return RowCallbackHandler
 RowCallbackHandler SqlReturnResultSet.getRowCallbackHandler()
           
 RowCallbackHandler SqlOutParameter.getRowCallbackHandler()
           
 

Methods in org.springframework.jdbc.core with parameters of type RowCallbackHandler
 java.util.List JdbcTemplate.query(java.lang.String sql, RowCallbackHandler rch)
           
 java.util.List JdbcTemplate.query(PreparedStatementCreator psc, RowCallbackHandler rch)
           
 java.util.List JdbcTemplate.query(java.lang.String sql, PreparedStatementSetter pss, RowCallbackHandler rch)
           
 java.util.List JdbcTemplate.query(java.lang.String sql, java.lang.Object[] args, int[] argTypes, RowCallbackHandler rch)
           
 java.util.List JdbcTemplate.query(java.lang.String sql, java.lang.Object[] args, RowCallbackHandler rch)
           
 java.util.List JdbcOperations.query(java.lang.String sql, RowCallbackHandler rch)
          Execute a query given static SQL, reading the ResultSet on a per-row basis with a RowCallbackHandler (potentially implementing the ResultReader sub-interface that provides a result List).
 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).
 java.util.List JdbcOperations.query(java.lang.String sql, PreparedStatementSetter pss, RowCallbackHandler rch)
          Query given SQL to create a prepared statement from SQL and a PreparedStatementSetter implementation that knows how to bind values to the query, reading the ResultSet on a per-row basis with a RowCallbackHandler (potentially implementing the ResultReader sub-interface that provides a result List).
 java.util.List JdbcOperations.query(java.lang.String sql, java.lang.Object[] args, int[] argTypes, RowCallbackHandler rch)
          Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, reading the ResultSet on a per-row basis with a RowCallbackHandler (potentially implementing the ResultReader sub-interface that provides a result List).
 java.util.List JdbcOperations.query(java.lang.String sql, java.lang.Object[] args, RowCallbackHandler rch)
          Query given SQL to create a prepared statement from SQL and a list of arguments to bind to the query, reading the ResultSet on a per-row basis with a RowCallbackHandler (potentially implementing the ResultReader sub-interface that provides a result List).
 

Constructors in org.springframework.jdbc.core with parameters of type RowCallbackHandler
SqlReturnResultSet(java.lang.String name, RowCallbackHandler rch)
           
SqlOutParameter(java.lang.String name, int type, RowCallbackHandler rch)
           
JdbcTemplate.RowCallbackHandlerResultSetExtractor(RowCallbackHandler rch)
           
 

Uses of RowCallbackHandler in org.springframework.jdbc.object
 

Classes in org.springframework.jdbc.object that implement RowCallbackHandler
protected  class MappingSqlQueryWithParameters.ResultReaderImpl
          Implementation of ResultReader that calls the enclosing class's mapRow() method for each row.
protected  class UpdatableSqlQuery.ResultReaderImpl
          Implementation of ResultReader that calls the enclosing class's updateRow() method for each row.
 



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