Example usage for java.sql ResultSet interface-usage

List of usage examples for java.sql ResultSet interface-usage

Introduction

In this page you can find the example usage for java.sql ResultSet interface-usage.

Usage

From source file org.apache.phoenix.jdbc.PhoenixResultSet.java

/**
 *
 * JDBC ResultSet implementation of Phoenix.
 * Currently only the following data types are supported:
 * - String
 * - Date

From source file org.executequery.databaseobjects.impl.DelegatingResultSet.java

@SuppressWarnings({ "unchecked", "rawtypes" })
class DelegatingResultSet implements ResultSet {

    /** My delegate. **/
    private ResultSet _res;

From source file com.sun.faces.mock.MockResultSet.java

/**
 * <p>Mock object that implements enough of <code>java.sql.ResultSet</code>
 * to exercise the <code>ResultSetDataModel</code> functionality.  It wraps
 * an array of JavaBeans objects that are passed to the constructor.</p>
 */

From source file net.starschema.clouddb.jdbc.ScrollableResultset.java

/**
 * This class implements the java.sql.ResultSet interface's Cursor and is a
 * Superclass for BQResultset and DMDResultSet
 * 
 * @author Horvth Attila
 * 

From source file net.starschema.clouddb.jdbc.BQForwardOnlyResultSet.java

/**
 * This class implements the java.sql.ResultSet interface, as a Forward only resultset
 *
 * @author Balazs Gunics
 * @author Johann Siess
 *

From source file com.alibaba.wasp.jdbc.result.JdbcResultSet.java

/**
 * <p>
 * Represents a result set.
 * </p>
 * <p>
 * Column labels are case-insensitive, quotes are not supported. The first

From source file org.kawanfw.sql.jdbc.ResultSetHttp.java

/**
 * ResultSet Wrapper. <br>
 * Implements all the ResultSet methods. Usage is exactly the same as a
 * ResultSet.
 * 
 */

From source file net.starschema.clouddb.jdbc.COLResultSetMetadata.java

/**
 * This class implements the java.sql.ResultSet interface for Object[] and
 * 
 * Object[][] types instead of GetQueryResultsResponse.getrows() for giving back
 * Resultset Data from BQDatabaseMetadata
 *