Changed Classes |
GenericSqlQuery
|
|
MappingSqlQuery
|
Reusable query in which concrete subclasses must implement the abstract
mapRow(ResultSet, int) method to convert each row of the JDBC ResultSet
into an object. |
MappingSqlQueryWithParameters
|
Reusable RDBMS query in which concrete subclasses must implement
the abstract mapRow(ResultSet, int) method to map each row of
the JDBC ResultSet into an object. |
MappingSqlQueryWithParameters. RowMapperImpl
|
Implementation of RowMapper that calls the enclosing
class's {@code mapRow} method for each row. |
SqlQuery
|
Reusable operation object representing a SQL query. |
UpdatableSqlQuery
|
Reusable RDBMS query in which concrete subclasses must implement
the abstract updateRow(ResultSet, int, context) method to update each
row of the JDBC ResultSet and optionally map contents into an object. |
UpdatableSqlQuery.RowMapperImpl
|
Implementation of RowMapper that calls the enclosing
class's {@code updateRow()} method for each row. |