The Spring Framework

Uses of Interface
org.springframework.jdbc.core.PreparedStatementCallback

Packages that use PreparedStatementCallback
org.springframework.jdbc.core Provides the core JDBC framework, based on JdbcTemplate and its associated callback interfaces and helper objects. 
org.springframework.jdbc.core.namedparam JdbcTemplate variant with named parameter support. 
org.springframework.jdbc.core.support Classes supporting the org.springframework.jdbc.core package. 
 

Uses of PreparedStatementCallback in org.springframework.jdbc.core
 

Methods in org.springframework.jdbc.core with parameters of type PreparedStatementCallback
 Object JdbcTemplate.execute(PreparedStatementCreator psc, PreparedStatementCallback action)
           
 Object JdbcOperations.execute(PreparedStatementCreator psc, PreparedStatementCallback action)
          Execute a JDBC data access operation, implemented as callback action working on a JDBC PreparedStatement.
 Object JdbcTemplate.execute(String sql, PreparedStatementCallback action)
           
 Object JdbcOperations.execute(String sql, PreparedStatementCallback action)
          Execute a JDBC data access operation, implemented as callback action working on a JDBC PreparedStatement.
 

Uses of PreparedStatementCallback in org.springframework.jdbc.core.namedparam
 

Methods in org.springframework.jdbc.core.namedparam with parameters of type PreparedStatementCallback
 Object NamedParameterJdbcTemplate.execute(String sql, Map paramMap, PreparedStatementCallback action)
           
 Object NamedParameterJdbcOperations.execute(String sql, Map paramMap, PreparedStatementCallback action)
          Execute a JDBC data access operation, implemented as callback action working on a JDBC PreparedStatement.
 Object NamedParameterJdbcTemplate.execute(String sql, SqlParameterSource paramSource, PreparedStatementCallback action)
           
 Object NamedParameterJdbcOperations.execute(String sql, SqlParameterSource paramSource, PreparedStatementCallback action)
          Execute a JDBC data access operation, implemented as callback action working on a JDBC PreparedStatement.
 

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

Classes in org.springframework.jdbc.core.support that implement PreparedStatementCallback
 class AbstractLobCreatingPreparedStatementCallback
          Abstract PreparedStatementCallback implementation that manages a LobCreator.
 


The Spring Framework

Copyright © 2002-2008 The Spring Framework.