Package org.springframework.jdbc.object
Class UpdatableSqlQuery<T>
java.lang.Object
org.springframework.jdbc.object.RdbmsOperation
org.springframework.jdbc.object.SqlOperation
org.springframework.jdbc.object.SqlQuery<T>
org.springframework.jdbc.object.UpdatableSqlQuery<T>
- Type Parameters:
- T- the result type
- All Implemented Interfaces:
- InitializingBean
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:
- 
Nested Class SummaryNested ClassesModifier and TypeClassDescriptionprotected classImplementation of RowMapper that calls the enclosing class'supdateRow()method for each row.
- 
Field SummaryFields inherited from class org.springframework.jdbc.object.RdbmsOperationlogger
- 
Constructor SummaryConstructorsConstructorDescriptionConstructor to allow use as a JavaBean.UpdatableSqlQuery(DataSource ds, String sql) Convenient constructor with DataSource and SQL string.
- 
Method SummaryModifier and TypeMethodDescriptionnewRowMapper(Object[] parameters, Map<?, ?> context) Implementation of the superclass template method.protected abstract TSubclasses 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.SqlQueryexecute, execute, execute, execute, execute, execute, execute, execute, execute, execute, execute, execute, executeByNamedParam, executeByNamedParam, findObject, findObject, findObject, findObject, findObject, findObject, findObject, findObject, findObject, findObject, findObjectByNamedParam, findObjectByNamedParam, getRowsExpected, setRowsExpectedMethods inherited from class org.springframework.jdbc.object.SqlOperationcompileInternal, getParsedSql, newPreparedStatementCreator, newPreparedStatementCreator, newPreparedStatementSetter, onCompileInternalMethods inherited from class org.springframework.jdbc.object.RdbmsOperationafterPropertiesSet, allowsUnusedParameters, checkCompiled, compile, declareParameter, getDeclaredParameters, getGeneratedKeysColumnNames, getJdbcTemplate, getResultSetType, getSql, isCompiled, isReturnGeneratedKeys, isUpdatableResults, resolveSql, setDataSource, setFetchSize, setGeneratedKeysColumnNames, setJdbcTemplate, setMaxRows, setParameters, setQueryTimeout, setResultSetType, setReturnGeneratedKeys, setSql, setTypes, setUpdatableResults, supportsLobParameters, validateNamedParameters, validateParameters
- 
Constructor Details- 
UpdatableSqlQuerypublic UpdatableSqlQuery()Constructor to allow use as a JavaBean.
- 
UpdatableSqlQueryConvenient constructor with DataSource and SQL string.- Parameters:
- ds- the DataSource to use to get connections
- sql- the SQL to run
 
 
- 
- 
Method Details- 
newRowMapperImplementation of the superclass template method. This invokes the subclass's implementation of theupdateRow()method.- Specified by:
- newRowMapperin class- SqlQuery<T>
- Parameters:
- parameters- the parameters to the- execute()method, in case subclass is interested; may be- nullif there were no parameters.
- context- the contextual information passed to the- mapRowcallback method. The JDBC operation itself doesn't rely on this parameter, but it can be useful for creating the objects of the result list.
- See Also:
 
- 
updateRowprotected abstract T updateRow(ResultSet rs, int rowNum, @Nullable Map<?, ?> context) throws SQLExceptionSubclasses must implement this method to update each row of the ResultSet and optionally create object of the result type.- Parameters:
- rs- the ResultSet we're working through
- rowNum- row number (from 0) we're up to
- context- passed to the- execute()method. It can be- nullif 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:
- SQLException- if there's an error updating data. Subclasses can simply not catch SQLExceptions, relying on the framework to clean up.
 
 
-