public interface RowMapper
Executor for mapping rows of a
ResultSet on a per-row basis. Implementations of this
interface perform the actual work of mapping each row to a result object,
but don't need to worry about exception handling.
SQLExceptions will be caught and handled
by the calling JdbcTemplate.
Executor,
RowCallbackHandler,
ResultSetExtractor| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
mapRow(java.sql.ResultSet rs,
int rowNum)
Implementations must implement this method to map each row of data
in the ResultSet.
|
java.lang.Object mapRow(java.sql.ResultSet rs,
int rowNum)
throws java.sql.SQLException
next() on
the ResultSet; it is only supposed to map values of the current row.rs - the ResultSet to map (pre-initialized for the current row)rowNum - the number of the current rowjava.sql.SQLException - if a SQLException is encountered getting
column values (that is, there's no need to catch SQLException)