Class ScalarHandler<T>
- java.lang.Object
-
- org.apache.commons.dbutils.handlers.ScalarHandler<T>
-
- Type Parameters:
T- The type of the scalar
- All Implemented Interfaces:
ResultSetHandler<T>
public class ScalarHandler<T> extends Object implements ResultSetHandler<T>
ResultSetHandlerimplementation that converts oneResultSetcolumn into an Object. This class is thread safe.- See Also:
ResultSetHandler
-
-
Constructor Summary
Constructors Constructor Description ScalarHandler()Creates a new instance of ScalarHandler.ScalarHandler(int columnIndex)Creates a new instance of ScalarHandler.ScalarHandler(String columnName)Creates a new instance of ScalarHandler.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Thandle(ResultSet resultSet)Returns oneResultSetcolumn as an object via theResultSet.getObject()method that performs type conversions.
-
-
-
Constructor Detail
-
ScalarHandler
public ScalarHandler()
Creates a new instance of ScalarHandler. The first column will be returned fromhandle().
-
ScalarHandler
public ScalarHandler(int columnIndex)
Creates a new instance of ScalarHandler.- Parameters:
columnIndex- The index of the column to retrieve from theResultSet.
-
ScalarHandler
public ScalarHandler(String columnName)
Creates a new instance of ScalarHandler.- Parameters:
columnName- The name of the column to retrieve from theResultSet.
-
-
Method Detail
-
handle
public T handle(ResultSet resultSet) throws SQLException
Returns oneResultSetcolumn as an object via theResultSet.getObject()method that performs type conversions.- Specified by:
handlein interfaceResultSetHandler<T>- Parameters:
resultSet-ResultSetto process.- Returns:
- The column or
nullif there are no rows in theResultSet. - Throws:
SQLException- if a database access error occursClassCastException- if the class datatype does not match the column type- See Also:
ResultSetHandler.handle(java.sql.ResultSet)
-
-