Example usage for org.apache.commons.dbutils ResultSetHandler interface-usage

List of usage examples for org.apache.commons.dbutils ResultSetHandler interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.dbutils ResultSetHandler interface-usage.

Usage

From source file ccc.migration.ccc6.handlers.SqlQuery.java

/**
 * API for a SQL query.
 *
 * @param <T> The type of result this query will return.
 *
 * @author Civic Computing Ltd.

From source file cn.buglife.data.framework.handler.ArrayHandler.java

/**
 * <code>ResultSetHandler</code> implementation that converts a
 * <code>ResultSet</code> into an <code>Object[]</code>. This class is
 * thread safe.
 *
 * @see org.apache.commons.dbutils.ResultSetHandler

From source file io.stallion.dataAccess.BeanListHandler.java

public class BeanListHandler<T> implements ResultSetHandler<List<T>> {
    private final Class<T> type;

    public BeanListHandler(Class<T> type) {
        this.type = type;
    }

From source file jongo.handler.JongoResultSetHandler.java

/**
 * Handles a ResultSet and converts it to a List of {@link jongo.rest.xstream.Row}
 * @author Alejandro Ayuso 
 */
public class JongoResultSetHandler implements ResultSetHandler<List<Row>> {

From source file org.jongo.handler.JongoResultSetHandler.java

/**
 * Handles a ResultSet and converts it to a List of {@link org.jongo.rest.xstream.Row}
 * @author Alejandro Ayuso 
 */
public class JongoResultSetHandler implements ResultSetHandler<List<Row>> {

From source file org.openconcerto.sql.model.ColumnListHandler.java

/**
 * <code>ResultSetHandler</code> implementation that converts one
 * <code>ResultSet</code> column into a <code>List</code> of
 * <code>Object</code>s. This class is thread safe.
 * 
 * @see ResultSetHandler

From source file de.tu_berlin.dima.oligos.db.handler.jdbc.ForeignKeysHandler.java

/**
 * {@link org.apache.commons.dbutils.ResultSetHandler ResultSetHandler}
 * implementation that converts the given <code>ResultSet</code> into a
 * <code>Set</code> of <code>ForeignKey</code>s. This class is intended to be a
 * utility class when working with JDBC and its <code>DatabaseMetaData</code>
 * object.

From source file com.qnoid.java.t0mR.ResultSetListHandler.java

/**
 * @author Markos Charatzas [http://forrst.me/Cue]
 * @date Jan 15, 2011
 *
 * Our implementation of a ResultSetHandler (part of DbUtils)
 */

From source file com.qnoid.java.t0mR.TemplateResultSetHandler.java

/**
 * @author Markos Charatzas [http://forrst.me/Cue]
 * @date Jan 15, 2011
    
 * This class provides a way to retrieve all the values in a result set based
 * on the columns specified and create a new object of type {@code T} based on 

From source file org.openlogics.gears.jdbc.map.BeanResultHandler.java

/**
 * @author Miguel Vega
 * @version $Id: BeanResultHandler.java 0, 2012-11-14 2:55 PM mvega $
 */
public class BeanResultHandler<T> implements ResultSetHandler {