com.interface21.jdbc.core
Interface ResultReader
- All Superinterfaces:
- RowCallbackHandler
- All Known Implementing Classes:
- ReflectionRowExtractor
- public interface ResultReader
- extends RowCallbackHandler
Extension of RowCallbackHandler interfaces that saves the
accumulated results as a Collection.
- Author:
- Rod Johnson
|
Method Summary |
java.util.List |
getResults()
Return all results, disconnected from the JDBC ResultSet. |
getResults
public java.util.List getResults()
- Return all results, disconnected from the JDBC ResultSet.
- Returns:
- all results, disconnected from the JDBC ResultSet.
Never returns null; returns the empty collection if there
were no results.
Rod Johnson and Spring contributors 2001-2003.