protected class MappingSqlQueryWithParameters.RowMapperImpl extends java.lang.Object implements RowMapper<T>
mapRow
method for each row.Constructor and Description |
---|
MappingSqlQueryWithParameters.RowMapperImpl(java.lang.Object[] parameters,
java.util.Map context)
Use an array results.
|
public MappingSqlQueryWithParameters.RowMapperImpl(java.lang.Object[] parameters, java.util.Map context)
public T mapRow(java.sql.ResultSet rs, int rowNum) throws java.sql.SQLException
RowMapper
next()
on
the ResultSet; it is only supposed to map values of the current row.mapRow
in interface RowMapper<T>
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)