org.apache.commons.dbutils.handlers
Class ArrayHandler

java.lang.Object
  extended by org.apache.commons.dbutils.handlers.ArrayHandler
All Implemented Interfaces:
ResultSetHandler<Object[]>

public class ArrayHandler
extends Object
implements ResultSetHandler<Object[]>

ResultSetHandler implementation that converts a ResultSet into an Object[]. This class is thread safe.

See Also:
ResultSetHandler

Constructor Summary
ArrayHandler()
          Creates a new instance of ArrayHandler using a BasicRowProcessor for conversion.
ArrayHandler(RowProcessor convert)
          Creates a new instance of ArrayHandler.
 
Method Summary
 Object[] handle(ResultSet rs)
          Places the column values from the first row in an Object[].
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ArrayHandler

public ArrayHandler()
Creates a new instance of ArrayHandler using a BasicRowProcessor for conversion.


ArrayHandler

public ArrayHandler(RowProcessor convert)
Creates a new instance of ArrayHandler.

Parameters:
convert - The RowProcessor implementation to use when converting rows into arrays.
Method Detail

handle

public Object[] handle(ResultSet rs)
                throws SQLException
Places the column values from the first row in an Object[].

Specified by:
handle in interface ResultSetHandler<Object[]>
Parameters:
rs - ResultSet to process.
Returns:
An Object[] or null if there are no rows in the ResultSet.
Throws:
SQLException - if a database access error occurs
See Also:
ResultSetHandler.handle(java.sql.ResultSet)


Copyright © 2002-2011 The Apache Software Foundation. All Rights Reserved.