Class UpdatableSqlQuery.RowMapperImpl
java.lang.Object
org.springframework.jdbc.object.UpdatableSqlQuery.RowMapperImpl
- All Implemented Interfaces:
 RowMapper<T>
- Enclosing class:
 UpdatableSqlQuery<T>
- 
Constructor Summary
Constructors - 
Method Summary
 
- 
Constructor Details
- 
RowMapperImpl
 
 - 
 - 
Method Details
- 
mapRow
Description copied from interface:RowMapperImplementations must implement this method to map each row of data in theResultSet. This method should not callnext()on theResultSet; it is only supposed to map values of the current row.- Specified by:
 mapRowin interfaceRowMapper<T>- Parameters:
 rs- theResultSetto map (pre-initialized for the current row)rowNum- the number of the current row- Returns:
 - the result object for the current row (may be 
null) - Throws:
 SQLException- if an SQLException is encountered while getting column values (that is, there's no need to catch SQLException)
 
 -