mapRow

abstract fun mapRow(rs: ResultSet, rowNum: Int): T

Implementations must implement this method to map each row of data in the ResultSet. This method should not call next() on the ResultSet; it is only supposed to map values of the current row.

Return

the result object for the current row (may be null)

Parameters

rs

the ResultSet to map (pre-initialized for the current row)

rowNum

the number of the current row