Interface ResultSetCallback
-
public interface ResultSetCallback
A callback using aResultSet
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
execute(ResultSet rs)
Callback with aResultSet
.
-
-
-
Method Detail
-
execute
void execute(ResultSet rs) throws SQLException
Callback with aResultSet
. The ResultSet will be closed automatically after this method returns.- Parameters:
rs
- the ResultSet.- Throws:
SQLException
- if an error occurs
-
-