[ 
https://issues.apache.org/jira/browse/DBUTILS-74?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Henri Yandell updated DBUTILS-74:
---------------------------------

    Fix Version/s: 1.4

Consider for 1.4.

> New ListResultSetHandler with a ResultSetHandler as parameter
> -------------------------------------------------------------
>
>                 Key: DBUTILS-74
>                 URL: https://issues.apache.org/jira/browse/DBUTILS-74
>             Project: Commons DbUtils
>          Issue Type: Improvement
>    Affects Versions: 1.3
>            Reporter: Olivier Grégoire
>             Fix For: 1.4
>
>   Original Estimate: 1h
>  Remaining Estimate: 1h
>
> It would be great if we could have such a class:
> public class DefaultListResultSetHandler<T> extends AbstractListHandler<T> {
>   public DefaultListResultSetHandler (ResultSetHandler<T> handler) {
>    if (handler == null) throw new NullPointerException();
>     this.handler = handler;
>   }
>   protected T handleRow (ResultSet rs) {
>     return handler.handle(rs);
>   }
> }
> This way, we avoid having two classes, one for the object handler itself and 
> one for the list handler. It's a all at once.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to