|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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 interface that saves the accumulated results as a List. |
Classes in org.springframework.jdbc.core that implement RowCallbackHandler | |
---|---|
class |
RowCountCallbackHandler
Implementation of RowCallbackHandler. |
class |
RowMapperResultReader
Adapter implementation of the ResultReader interface that delegates to a RowMapper which is supposed to create an object for each row. |
Methods in org.springframework.jdbc.core that return RowCallbackHandler | |
---|---|
RowCallbackHandler |
ResultSetSupportingSqlParameter.getRowCallbackHandler()
Return a new instance of the implementation of a RowCallbackHandler, usable for returned ResultSets. |
Methods in org.springframework.jdbc.core with parameters of type RowCallbackHandler | |
---|---|
List |
JdbcTemplate.query(PreparedStatementCreator psc,
RowCallbackHandler rch)
|
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 A PreparedStatementCreator can either be implemented directly or configured through a PreparedStatementCreatorFactory. |
List |
JdbcTemplate.query(String sql,
Object[] args,
int[] argTypes,
RowCallbackHandler rch)
|
List |
JdbcOperations.query(String sql,
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). |
List |
JdbcTemplate.query(String sql,
Object[] args,
RowCallbackHandler rch)
|
List |
JdbcOperations.query(String sql,
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). |
List |
JdbcTemplate.query(String sql,
PreparedStatementSetter pss,
RowCallbackHandler rch)
|
List |
JdbcOperations.query(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). |
List |
JdbcTemplate.query(String sql,
RowCallbackHandler rch)
|
List |
JdbcOperations.query(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). |
Constructors in org.springframework.jdbc.core with parameters of type RowCallbackHandler | |
---|---|
ResultSetSupportingSqlParameter(String name,
int sqlType,
RowCallbackHandler rch)
Create a new ResultSetSupportingSqlParameter. |
|
SqlOutParameter(String name,
int sqlType,
RowCallbackHandler rch)
Create a new SqlOutParameter. |
|
SqlReturnResultSet(String name,
RowCallbackHandler handler)
Create a new instance of the SqlReturnResultSet class. |
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. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |