org.springframework.jdbc.object
Class SqlOperation

org.springframework.jdbc.object.RdbmsOperation
  |
  +--org.springframework.jdbc.object.SqlOperation
Direct Known Subclasses:
SqlQuery, SqlUpdate

public abstract class SqlOperation
extends RdbmsOperation

RdbmsOperation using a JdbcTemplate and representing a SQL-based operation such as a query or update, as opposed to a stored procedure.

Configures a PreparedStatementCreatorFactory based on the declared parameters.

Author:
Rod Johnson
Version: $Id: SqlOperation.java,v 1.8 2004/01/02 22:01:31 jhoeller Exp $

Methods inherited from class org.springframework.jdbc.object.RdbmsOperation
afterPropertiesSet, compile, declareParameter, getSql, isCompiled, setDataSource, setJdbcTemplate, setSql, setTypes

Association Links

to Class org.springframework.jdbc.core.PreparedStatementCreatorFactory

Object enabling us to create PreparedStatementCreators efficiently, based on this class's declared parameters.