| Interface Summary |
| BatchPreparedStatementSetter | Callback interface used by the JdbcTemplate class. |
| CallableStatementCreator | One of the three central callback interfaces used by the JdbcTemplate class. |
| ColumnExtractor | Interface to be implemented by objects that know how to extract
columns from a ResultSet and ensure that they are of a given type. |
| JdbcOperations | Interface that specifies a basic set of JDBC operations. |
| ParameterMapper | Implement this interface when parameters need to be customized based
on the connection. |
| PreparedStatementCreator | One of the two central callback interfaces used by the JdbcTemplate class. |
| PreparedStatementSetter | Callback interface used by the JdbcTemplate class. |
| ResultReader | Extension of RowCallbackHandler interfaces that saves the
accumulated results as a Collection. |
| ResultSetExtractor | Callback interfaces used by the JdbcTemplate class's doWithResultSetXXXX() methods. |
| RowCallbackHandler | One of the two central callback interfaces used by the JdbcTemplate class. |
| RowMapper | An interfaces used by the StoredProcedure class for mapping returned result sets. |
| Class Summary |
| CallableStatementCreatorFactory | Helper class that can efficiently create multiple CallableStatementCreator
objects with different parameters based on a SQL statement and a single
set of parameter declarations. |
| DefaultColumnExtractor | Default implementation of the ColumnExtractor interface. |
| JdbcHelper | Utility class to use for JDBC queries from J2EE applications. |
| JdbcTemplate | This is the central class in the JDBC core package. |
| PreparedStatementCreatorFactory | Helper class that can efficiently create multiple PreparedStatementCreator
objects with different parameters based on a SQL statement and a single
set of parameter declarations. |
| RowCountCallbackHandler | Implementation of RowCallbackHandler. |
| SqlOutParameter | Subclass of SqlParameter to represent an output parameter. |
| SqlParameter | Object to represent a SQL parameter definition. |
| SqlParameter.ResultReaderStoredProcImpl | Implementation of ResultReader that calls the supplied
RowMapper class's mapRow() method for each row. |
| SqlReturnResultSet | Subclass of SqlParameter to represent a returned resultset from a stored procedure call. |
Provides the core JDBC framework, based on JdbcTemplate
and its associated callback interfaces and helper objects.