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. 
 

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.
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.
SqlParameter
          Object to represent a SQL parameter definition.
SqlProvider
          Interface to be implemented by objects that can provide SQL strings.
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
JdbcTemplate
          This is the central class in the JDBC core package. It simplifies the use of JDBC and helps to avoid common errors.
 

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. It simplifies the use of JDBC and helps to avoid common errors.
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.
ResultReader
          Extension of RowCallbackHandler interfaces that saves the accumulated results as a List.
RowCallbackHandler
          One of the two central callback interfaces used by the JdbcTemplate class.
SqlParameter
          Object to represent a SQL parameter definition.
 



Copyright (C) 2003-2004 The Spring Framework Project.