Interface ResultSetHandler
-
- All Known Implementing Classes:
DefaultResultSetHandler
public interface ResultSetHandler
- Author:
- Clinton Begin
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <E> Cursor<E>
handleCursorResultSets(Statement stmt)
void
handleOutputParameters(CallableStatement cs)
<E> List<E>
handleResultSets(Statement stmt)
-
-
-
Method Detail
-
handleResultSets
<E> List<E> handleResultSets(Statement stmt) throws SQLException
- Throws:
SQLException
-
handleCursorResultSets
<E> Cursor<E> handleCursorResultSets(Statement stmt) throws SQLException
- Throws:
SQLException
-
handleOutputParameters
void handleOutputParameters(CallableStatement cs) throws SQLException
- Throws:
SQLException
-
-