Uses of Interface
org.springframework.jdbc.core.RowCallbackHandler
Packages that use RowCallbackHandler
Package
Description
Provides the core JDBC framework, based on JdbcTemplate
and its associated callback interfaces and helper objects.
JdbcTemplate variant with named parameter support.
-
Uses of RowCallbackHandler in org.springframework.jdbc.core
Classes in org.springframework.jdbc.core that implement RowCallbackHandlerModifier and TypeClassDescriptionclassImplementation of RowCallbackHandler.Methods in org.springframework.jdbc.core that return RowCallbackHandlerModifier and TypeMethodDescriptionResultSetSupportingSqlParameter.getRowCallbackHandler()Return the RowCallbackHandler held by this parameter, if any.Methods in org.springframework.jdbc.core with parameters of type RowCallbackHandlerModifier and TypeMethodDescriptionvoidJdbcOperations.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.voidJdbcOperations.query(String sql, Object[] args, RowCallbackHandler rch) Deprecated.voidJdbcOperations.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.voidJdbcOperations.query(String sql, RowCallbackHandler rch) Execute a query given static SQL, reading the ResultSet on a per-row basis with a RowCallbackHandler.voidJdbcOperations.query(String sql, RowCallbackHandler rch, Object... args) 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.voidJdbcOperations.query(PreparedStatementCreator psc, RowCallbackHandler rch) Query using a prepared statement, reading the ResultSet on a per-row basis with a RowCallbackHandler.voidJdbcTemplate.query(String sql, Object[] args, int[] argTypes, RowCallbackHandler rch) voidJdbcTemplate.query(String sql, Object[] args, RowCallbackHandler rch) Deprecated.voidJdbcTemplate.query(String sql, PreparedStatementSetter pss, RowCallbackHandler rch) voidJdbcTemplate.query(String sql, RowCallbackHandler rch) voidJdbcTemplate.query(String sql, RowCallbackHandler rch, Object... args) voidJdbcTemplate.query(PreparedStatementCreator psc, RowCallbackHandler rch) Constructors in org.springframework.jdbc.core with parameters of type RowCallbackHandlerModifierConstructorDescriptionResultSetSupportingSqlParameter(String name, int sqlType, RowCallbackHandler rch) Create a new ResultSetSupportingSqlParameter.SqlInOutParameter(String name, int sqlType, RowCallbackHandler rch) Create a new SqlInOutParameter.SqlOutParameter(String name, int sqlType, RowCallbackHandler rch) Create a new SqlOutParameter.SqlReturnResultSet(String name, RowCallbackHandler handler) Create a new instance of theSqlReturnResultSetclass. -
Uses of RowCallbackHandler in org.springframework.jdbc.core.namedparam
Methods in org.springframework.jdbc.core.namedparam with parameters of type RowCallbackHandlerModifier and TypeMethodDescriptionvoidNamedParameterJdbcOperations.query(String sql, Map<String, ?> paramMap, 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.voidNamedParameterJdbcOperations.query(String sql, SqlParameterSource paramSource, 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.voidNamedParameterJdbcOperations.query(String sql, RowCallbackHandler rch) Query given SQL to create a prepared statement from SQL, reading the ResultSet on a per-row basis with a RowCallbackHandler.voidNamedParameterJdbcTemplate.query(String sql, Map<String, ?> paramMap, RowCallbackHandler rch) voidNamedParameterJdbcTemplate.query(String sql, SqlParameterSource paramSource, RowCallbackHandler rch) voidNamedParameterJdbcTemplate.query(String sql, RowCallbackHandler rch)
JdbcOperations.query(String, RowCallbackHandler, Object...)