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