org.apache.commons.dbutils
public interface ResultSetHandler
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
handle(java.sql.ResultSet rs)
Turn the
ResultSet into an Object. |
java.lang.Object handle(java.sql.ResultSet rs) throws java.sql.SQLException
ResultSet
into an Object.rs
- The ResultSet
to handle. It has not been touched
before being passed to this method.ResultSet
data. It is
legal for implementations to return null
if the
ResultSet
contained 0 rows.java.sql.SQLException
- if a database access error occurs