Package org.apache.commons.dbutils.handlers
Implementations of the org.apache.commons.dbutils.ResultSetHandler interface.
-
Class Summary Class Description AbstractKeyedHandler<K,V> ResultSetHandler
implementation that returns a Map.AbstractListHandler<T> Abstract class that simplify development ofResultSetHandler
classes that convertResultSet
intoList
.ArrayHandler ResultSetHandler
implementation that converts aResultSet
into anObject[]
.ArrayListHandler ResultSetHandler
implementation that converts theResultSet
into aList
ofObject[]
s.BeanHandler<T> ResultSetHandler
implementation that converts the firstResultSet
row into a JavaBean.BeanListHandler<T> ResultSetHandler
implementation that converts aResultSet
into aList
of beans.BeanMapHandler<K,V> ResultSetHandler
implementation that returns a Map of Beans.ColumnListHandler<T> ResultSetHandler
implementation that converts oneResultSet
column into aList
ofObject
s.KeyedHandler<K> ResultSetHandler
implementation that returns a Map of Maps.MapHandler ResultSetHandler
implementation that converts the firstResultSet
row into aMap
.MapListHandler ResultSetHandler
implementation that converts aResultSet
into aList
ofMap
s.ScalarHandler<T> ResultSetHandler
implementation that converts oneResultSet
column into an Object.