Package org.springframework.jdbc.core

Provides the core JDBC framework, based on JdbcTemplate and its associated callback interfaces and helper objects.

See
          Description

Class Diagram Summary
core 
 

Interface Summary
BatchPreparedStatementSetterCallback interface used by the JdbcTemplate class.
CallableStatementCreatorOne of the three central callback interfaces used by the JdbcTemplate class.
ColumnExtractorInterface to be implemented by objects that know how to extract columns from a ResultSet and ensure that they are of a given type.
JdbcOperationsInterface that specifies a basic set of JDBC operations.
ParameterMapperImplement this interface when parameters need to be customized based on the connection.
PreparedStatementCreatorOne of the two central callback interfaces used by the JdbcTemplate class.
PreparedStatementSetterCallback interface used by the JdbcTemplate class.
ResultReaderExtension of RowCallbackHandler interfaces that saves the accumulated results as a Collection.
ResultSetExtractorCallback interfaces used by the JdbcTemplate class's doWithResultSetXXXX() methods.
RowCallbackHandlerOne of the two central callback interfaces used by the JdbcTemplate class.
RowMapperAn interfaces used by the StoredProcedure class for mapping returned result sets.
 

Class Summary
CallableStatementCreatorFactoryHelper class that can efficiently create multiple CallableStatementCreator objects with different parameters based on a SQL statement and a single set of parameter declarations.
DefaultColumnExtractorDefault implementation of the ColumnExtractor interface.
JdbcHelperUtility class to use for JDBC queries from J2EE applications.
JdbcTemplateThis is the central class in the JDBC core package.
PreparedStatementCreatorFactoryHelper class that can efficiently create multiple PreparedStatementCreator objects with different parameters based on a SQL statement and a single set of parameter declarations.
RowCountCallbackHandlerImplementation of RowCallbackHandler.
SqlOutParameterSubclass of SqlParameter to represent an output parameter.
SqlParameterObject to represent a SQL parameter definition.
SqlParameter.ResultReaderStoredProcImplImplementation of ResultReader that calls the supplied RowMapper class's mapRow() method for each row.
SqlReturnResultSetSubclass of SqlParameter to represent a returned resultset from a stored procedure call.
 

Package org.springframework.jdbc.core Description

Provides the core JDBC framework, based on JdbcTemplate and its associated callback interfaces and helper objects.