|
|||||||||||
PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES |
See:
Description
Interface Summary | |
BatchPreparedStatementSetter | Callback interface used by the JdbcTemplate class. |
CallableStatementCallback | Generic callback interface for code that operates on a CallableStatement. |
CallableStatementCreator | One of the three central callback interfaces used by the JdbcTemplate class. |
JdbcOperations | Interface that specifies a basic set of JDBC operations. |
ParameterMapper | Implement this interface when parameters need to be customized based on the connection. |
PreparedStatementCallback | Generic callback interface for code that operates on a PreparedStatement. |
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 List. |
ResultSetExtractor | Callback interface 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. |
SqlProvider | Interface to be implemented by objects that can provide SQL strings. |
StatementCallback | Generic callback interface for code that operates on a JDBC Statement. |
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. |
JdbcTemplate | This is the central class in the JDBC core package. It simplifies the use of JDBC and helps to avoid common errors. |
JdbcTemplate.ListResultSetExtractor | ResultSetExtractor implementation that returns an ArrayList of HashMaps. |
JdbcTemplate.ObjectResultSetExtractor | ResultSetExtractor implementation that returns single result object. |
JdbcTemplate.RowCallbackHandlerResultSetExtractor | Adapter to enable use of a RowCallbackHandler inside a ResultSetExtractor. |
JdbcTemplate.SimpleCallableStatementCreator | Simple adapter for CallableStatementCreator, allowing to use a plain SQL statement. |
JdbcTemplate.SimplePreparedStatementCreator | Simple adapter for PreparedStatementCreator, allowing to use a plain SQL statement. |
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.