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 jongo.handler.ResultSetMetaDataHandler.java

/**
 *
 * @author Alejandro Ayuso 
 */
public class ResultSetMetaDataHandler implements ResultSetHandler<List<Row>> {

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

/**
 *
 * @author Alejandro Ayuso 
 */
public class ResultSetMetaDataHandler implements ResultSetHandler<List<Row>> {

From source file de.tu_berlin.dima.oligos.db.HistogramHandler.java

public class HistogramHandler<T> implements ResultSetHandler<Map<T, Long>> {

    private final int keyColumnIndex;
    private final String keyColumnName;
    private final int valColumnIndex;
    private final String valColumnName;

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

public final class SQLRowListRSH implements ResultSetHandler {

    // hashCode()/equals() needed for data source cache
    public static final class RSH implements ResultSetHandler {
        private final Tuple2<SQLTable, List<String>> names;

From source file org.batoo.jpa.core.test.ColumnNameListHandler.java

/**
 * A Result set handler that lists the columns in a String.
 * 
 * @author hceylan
 * @since 2.0.0
 */

From source file org.openconcerto.sql.utils.CSVHandler.java

/**
 * Serialize rows into the CSV format. Lines are separated by newlines, <code>null</code> is \N, all
 * other values are double quoted.
 * 
 * @author Sylvain
 * @see SQLSyntax#loadData(java.io.File, org.openconcerto.sql.model.SQLTable)

From source file ttf.persistence.sql.TopicListRSH.java

/**
 * This class will be refactored.
 * 
 * @author Mihai Paraschiv
 * 
 */

From source file genepi.db.GroupedListHandler.java

public class GroupedListHandler implements ResultSetHandler<Object> {

    private IRowMapMapper mapper;

    public GroupedListHandler(IRowMapMapper rowMapper) {
        this.mapper = rowMapper;

From source file net.orpiske.ssps.common.repository.search.cache.PackageCacheRsHandler.java

/**
 * Handles the result of a query
 * 
 * @author Otavio R. Piske <angusyoung@gmail.com>
 */
class PackageCacheRsHandler implements ResultSetHandler<PackageInfo> {

From source file com.linkage.community.schedule.dbutils.CustomScalarHandler.java

/**
 * <code>ResultSetHandler</code> implementation that converts one
 * <code>ResultSet</code> column into an Object. This class is thread safe.
 *
 * @param <T> The type of the scalar
 * @see org.apache.commons.dbutils.ResultSetHandler