Class BaseResultSetHandler<T>

java.lang.Object
org.apache.commons.dbutils.BaseResultSetHandler<T>
Type Parameters:
T - the target type the input ResultSet will be converted to.
All Implemented Interfaces:
ResultSetHandler<T>

public abstract class BaseResultSetHandler<T> extends Object implements ResultSetHandler<T>
Extensions of this class convert ResultSets into other objects. According to the DRY principle (Don't Repeat Yourself), repeating resultSet variable inside the ResultSetHandler.handle(ResultSet) over and over for each iteration can get a little tedious, AbstractResultSetHandler implicitly gives users access to ResultSet's methods. NOTE This class is NOT thread safe!
Since:
1.6