DefaultResultSetMapper.java | Class | Maps all columns of database result set (RS) row to objects.
It does it in two steps: preparation (reading table and column names)
and parsing (parsing one result set row to resulting objects).
Preparation
Default mapper reads RS column and table names from RS meta-data and external maps, if provided.
Since column name is always availiable in RS meta-data, it may be used to hold table name information.
Column names may contain table code separator (
jodd.db.orm.DbOrm.getColumnAliasSeparator that
divides column name to table reference and column name. |