Package | Description |
---|---|
org.apache.commons.dbutils |
DbUtils is a small set of classes designed to make working with JDBC easier.
|
org.apache.commons.dbutils.handlers |
Implementations of the org.apache.commons.dbutils.ResultSetHandler interface.
|
Modifier and Type | Class and Description |
---|---|
class |
BasicRowProcessor
Basic implementation of the
RowProcessor interface. |
Modifier and Type | Field and Description |
---|---|
private RowProcessor |
ResultSetIterator.convert
The processor to use when converting a row into an Object[].
|
Constructor and Description |
---|
ResultSetIterator(java.sql.ResultSet rs,
RowProcessor convert)
Constructor for ResultSetIterator.
|
Modifier and Type | Field and Description |
---|---|
private RowProcessor |
MapListHandler.convert
The RowProcessor implementation to use when converting rows
into Maps.
|
private RowProcessor |
MapHandler.convert
The RowProcessor implementation to use when converting rows
into Maps.
|
protected RowProcessor |
KeyedHandler.convert
The RowProcessor implementation to use when converting rows
into Objects.
|
private RowProcessor |
BeanListHandler.convert
The RowProcessor implementation to use when converting rows
into beans.
|
private RowProcessor |
BeanHandler.convert
The RowProcessor implementation to use when converting rows
into beans.
|
private RowProcessor |
ArrayListHandler.convert
The RowProcessor implementation to use when converting rows
into Object[]s.
|
private RowProcessor |
ArrayHandler.convert
The RowProcessor implementation to use when converting rows
into arrays.
|
(package private) static RowProcessor |
ArrayHandler.ROW_PROCESSOR
Singleton processor instance that handlers share to save memory.
|
Constructor and Description |
---|
ArrayHandler(RowProcessor convert)
Creates a new instance of ArrayHandler.
|
ArrayListHandler(RowProcessor convert)
Creates a new instance of ArrayListHandler.
|
BeanHandler(java.lang.Class type,
RowProcessor convert)
Creates a new instance of BeanHandler.
|
BeanListHandler(java.lang.Class type,
RowProcessor convert)
Creates a new instance of BeanListHandler.
|
KeyedHandler(RowProcessor convert)
Creates a new instance of KeyedHandler.
|
MapHandler(RowProcessor convert)
Creates a new instance of MapHandler.
|
MapListHandler(RowProcessor convert)
Creates a new instance of MapListHandler.
|