Package org.dalesbred.result
Handling database-results.
-
Interface Summary Interface Description ResultSetProcessor<T> Callback for processing a wholeResultSet
.RowMapper<T> Maps a single row of result-set into an object. -
Class Summary Class Description ResultTable Represents the results of the query along with its metadata.ResultTable.Builder A builder for building ResultTables.ResultTable.ColumnMetadata Provides metadata about a column of the result.ResultTable.ResultRow Represents a single row of results. -
Exception Summary Exception Description EmptyResultException Exception thrown when expecting a unique result from a call, but got no results.NonUniqueResultException Exception thrown when expecting a unique result from a call, but more then one row of results was returned by the database.NonUniqueUpdateException Exception thrown when expecting update to modify a single row, but zero or multiple rows were modified.UnexpectedResultException Exception thrown when result from database is unexpected.