Uses of Class
org.springframework.jdbc.core.JdbcTemplate

Packages that use JdbcTemplate
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.  
 

Uses of JdbcTemplate in org.springframework.jdbc.core.support
 

Methods in org.springframework.jdbc.core.support that return JdbcTemplate
 JdbcTemplate JdbcDaoSupport.getJdbcTemplate()
          Return the JdbcTemplate for this DAO, pre-initialized with the DataSource or set explicitly.
 

Methods in org.springframework.jdbc.core.support with parameters of type JdbcTemplate
 void JdbcDaoSupport.setJdbcTemplate(JdbcTemplate jdbcTemplate)
          Set the JdbcTemplate for this DAO explicitly, as an alternative to specifying a DataSource.
 void JdbcBeanDefinitionReader.setJdbcTemplate(JdbcTemplate jdbcTemplate)
          Set the JdbcTemplate to be used by this bean factory.
 

Uses of JdbcTemplate in org.springframework.jdbc.object
 

Methods in org.springframework.jdbc.object that return JdbcTemplate
 JdbcTemplate RdbmsOperation.getJdbcTemplate()
          Return the JdbcTemplate object used by this object.
 

Methods in org.springframework.jdbc.object with parameters of type JdbcTemplate
 void RdbmsOperation.setJdbcTemplate(JdbcTemplate jdbcTemplate)
          An alternative to the more commonly used setDataSource() when you want to use the same JdbcTemplate in multiple RdbmsOperations.
 

Constructors in org.springframework.jdbc.object with parameters of type JdbcTemplate
StoredProcedure(JdbcTemplate jdbcTemplate, String name)
          Create a new object wrapper for a stored procedure.
 

Uses of JdbcTemplate in org.springframework.test
 

Fields in org.springframework.test declared as JdbcTemplate
protected  JdbcTemplate AbstractTransactionalDataSourceSpringContextTests.jdbcTemplate
           
 



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