| |
|
| java.lang.Object org.apache.commons.dbutils.handlers.ScalarHandler
Constructor Summary | |
public | ScalarHandler() Creates a new instance of ScalarHandler. | public | ScalarHandler(int columnIndex) Creates a new instance of ScalarHandler. | public | ScalarHandler(String columnName) Creates a new instance of ScalarHandler. |
Method Summary | |
public Object | handle(ResultSet rs) Returns one ResultSet column as an object via the
ResultSet.getObject() method that performs type
conversions. |
ScalarHandler | public ScalarHandler()(Code) | | Creates a new instance of ScalarHandler. The first column will
be returned from handle() .
|
ScalarHandler | public ScalarHandler(int columnIndex)(Code) | | Creates a new instance of ScalarHandler.
Parameters: columnIndex - The index of the column to retrieve from the ResultSet . |
ScalarHandler | public ScalarHandler(String columnName)(Code) | | Creates a new instance of ScalarHandler.
Parameters: columnName - The name of the column to retrieve from the ResultSet . |
|
|
|