org.springframework.jdbc.object
Class UpdatableSqlQuery
java.lang.Object
   org.springframework.jdbc.object.RdbmsOperation
org.springframework.jdbc.object.RdbmsOperation
       org.springframework.jdbc.object.SqlOperation
org.springframework.jdbc.object.SqlOperation
           org.springframework.jdbc.object.SqlQuery
org.springframework.jdbc.object.SqlQuery
               org.springframework.jdbc.object.UpdatableSqlQuery
org.springframework.jdbc.object.UpdatableSqlQuery
- All Implemented Interfaces: 
- InitializingBean
- public abstract class UpdatableSqlQuery- extends SqlQuery
Reusable RDBMS query in which concrete subclasses must implement
 the abstract updateRow(ResultSet, int, context) method to update each 
 row of the JDBC ResultSet and optionally map contents into an object.
 
Subclasses can be constructed providing SQL, parameter types
 and a DataSource. SQL will often vary between subclasses.
- Author:
- Thomas Risberg
- See Also:
- SqlQuery
 
 
 
| Constructor Summary | 
| UpdatableSqlQuery()Constructor to allow use as a JavaBean
 | 
| UpdatableSqlQuery(javax.sql.DataSource ds,
                  java.lang.String sql)Convenient constructor with DataSource and SQL string.
 | 
 
| Method Summary | 
| protected  ResultReader | newResultReader(int rowsExpected,
                java.lang.Object[] parameters,
                java.util.Map context)Implementation of protected abstract method.
 | 
| protected abstract  java.lang.Object | updateRow(java.sql.ResultSet rs,
          int rowNum,
          java.util.Map context)Subclasses must implement this method to update each row of the 
 ResultSet and optionally create object of the result type.
 | 
 
| Methods inherited from class org.springframework.jdbc.object.SqlQuery | 
| execute, execute, execute, execute, execute, execute, execute, execute, execute, execute, execute, execute, findObject, findObject, findObject, findObject, findObject, findObject, findObject, findObject, findObject, findObject, getRowsExpected, onCompileInternal, setRowsExpected | 
 
 
| Methods inherited from class org.springframework.jdbc.object.RdbmsOperation | 
| afterPropertiesSet, compile, declareParameter, getDeclaredParameters, getJdbcTemplate, getSql, isCompiled, setDataSource, setJdbcTemplate, setSql, setTypes, validateParameters | 
 
| Methods inherited from class java.lang.Object | 
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
UpdatableSqlQuery
public UpdatableSqlQuery()
- Constructor to allow use as a JavaBean
 
UpdatableSqlQuery
public UpdatableSqlQuery(javax.sql.DataSource ds,
                         java.lang.String sql)
- Convenient constructor with DataSource and SQL string.
 
- Parameters:
- ds- DataSource to use to get connections
- sql- SQL to run
newResultReader
protected ResultReader newResultReader(int rowsExpected,
                                       java.lang.Object[] parameters,
                                       java.util.Map context)
- Implementation of protected abstract method. This invokes the subclass's
 implementation of the updateRow() method.
 
- 
- Specified by:
- newResultReaderin class- SqlQuery
 
- 
- Parameters:
- rowsExpected- If 0, we don't know how many rows to expect.
 This parameter can be ignored, but may help some implementations
 choose the most efficient Collection type: e.g. ArrayList
 instead of LinkedList for large result sets.
- parameters- parameters to the execute() method, in case subclass is interested.
 May be null if there were no parameters.
- See Also:
- SqlQuery.execute(java.lang.Object[], java.util.Map)
 
updateRow
protected abstract java.lang.Object updateRow(java.sql.ResultSet rs,
                                              int rowNum,
                                              java.util.Map context)
                                       throws java.sql.SQLException
- Subclasses must implement this method to update each row of the 
 ResultSet and optionally create object of the result type.
 
- 
- Parameters:
- rs- ResultSet we're working through
- rowNum- row number (from 0) we're up to
- context- passed to the execute() method.
 It can be null if no contextual information is need.  If you
 need to pass in data for each row, you can pass in a HashMap with 
 the primary key of the row being the key for the HashMap.  That way
 it is easy to locate the updates for each row
- Returns:
- an object of the result type
- Throws:
- java.sql.SQLException- if there's an error updateing data.
 Subclasses can simply not catch SQLExceptions, relying on the
 framework to clean up.
 
Copyright (C) 2003-2004 The Spring Framework Project.