Uses of Package
org.springframework.jdbc.core

Packages that use org.springframework.jdbc.core
org.springframework.jdbc.core Provides the core JDBC framework, based on JdbcTemplate and its associated callback interfaces and helper objects. 
org.springframework.jdbc.core.support Classes supporting the org.springframework.jdbc.core package. 
org.springframework.jdbc.object The classes in this package represent RDBMS queries, updates, and stored procedures as threadsafe, reusable objects. 
org.springframework.test Superclasses for tests requiring Spring application contexts, including support for transactional execution of test cases, with automatic rollback on completion. 
 

Classes in org.springframework.jdbc.core used by org.springframework.jdbc.core
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.
ConnectionCallback
          Generic callback interface for code that operates on a JDBC Connection.
JdbcOperations
          Interface specifying 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 interface that saves the accumulated results as a List.
ResultSetExtractor
          Callback interface used by JdbcTemplate's query methods.
ResultSetSupportingSqlParameter
          Common base class for ResultSet-supporting SqlParameters like SqlOutParameter and SqlReturnResultSet.
RowCallbackHandler
          An interface used by JdbcTemplate for processing rows of a ResultSet on a per-row basis.
RowMapper
          An interface used by JdbcTemplate for mapping rows of a ResultSet on a per-row basis.
SqlParameter
          Object to represent a SQL parameter definition.
SqlReturnType
          Interface to be implemented for retrieving values for more complex database specific types not supported by the standard getObject method.
SqlTypeValue
          Interface to be implemented for setting values for more complex database specific types not supported by the standard setObject method.
StatementCallback
          Generic callback interface for code that operates on a JDBC Statement.
 

Classes in org.springframework.jdbc.core used by org.springframework.jdbc.core.support
DisposableSqlTypeValue
          Subinterface of SqlTypeValue that adds a cleanup callback, to be invoked after the value has been set and the corresponding statement has been executed.
JdbcTemplate
          This is the central class in the JDBC core package.
PreparedStatementCallback
          Generic callback interface for code that operates on a PreparedStatement.
ResultSetExtractor
          Callback interface used by JdbcTemplate's query methods.
SqlTypeValue
          Interface to be implemented for setting values for more complex database specific types not supported by the standard setObject method.
 

Classes in org.springframework.jdbc.core used by org.springframework.jdbc.object
CallableStatementCreator
          One of the three central callback interfaces used by the JdbcTemplate class.
JdbcTemplate
          This is the central class in the JDBC core package.
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 interface that saves the accumulated results as a List.
RowCallbackHandler
          An interface used by JdbcTemplate for processing rows of a ResultSet on a per-row basis.
SqlParameter
          Object to represent a SQL parameter definition.
 

Classes in org.springframework.jdbc.core used by org.springframework.test
JdbcTemplate
          This is the central class in the JDBC core package.
 



Copyright (c) 2002-2007 The Spring Framework Project.