The Spring Framework

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

Packages that use JdbcTemplate
org.springframework.jdbc.core.simple Simplification layer over JdbcTemplate for Java 5 and above. 
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.simple
 

Methods in org.springframework.jdbc.core.simple that return JdbcTemplate
protected  JdbcTemplate AbstractJdbcInsert.getJdbcTemplate()
          Get the JdbcTemplate that is configured to be used
 JdbcTemplate AbstractJdbcCall.getJdbcTemplate()
          Get the configured JdbcTemplate
 

Constructors in org.springframework.jdbc.core.simple with parameters of type JdbcTemplate
AbstractJdbcCall(JdbcTemplate jdbcTemplate)
          Constructor to be used when initializing using a JdbcTemplate.
AbstractJdbcInsert(JdbcTemplate jdbcTemplate)
          Constructor for sublasses to delegate to for setting the JdbcTemplate.
SimpleJdbcCall(JdbcTemplate jdbcTemplate)
          Alternative Constructor that takes one parameter with the JdbcTemplate to be used.
SimpleJdbcInsert(JdbcTemplate jdbcTemplate)
          Alternative Constructor that takes one parameter with the JdbcTemplate to be used.
 

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

Methods in org.springframework.jdbc.core.support that return JdbcTemplate
protected  JdbcTemplate JdbcDaoSupport.createJdbcTemplate(DataSource dataSource)
          Create a JdbcTemplate for the given DataSource.
 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
           
 

Methods in org.springframework.test that return JdbcTemplate
 JdbcTemplate AbstractTransactionalDataSourceSpringContextTests.getJdbcTemplate()
          Return the JdbcTemplate that this base class manages.
 


The Spring Framework

Copyright © 2002-2007 The Spring Framework.