mirror of
https://github.com/postgres/postgres.git
synced 2025-05-01 01:04:50 +03:00
28 lines
891 B
Java
28 lines
891 B
Java
package org.postgresql.jdbc1;
|
|
|
|
|
|
import java.sql.*;
|
|
import java.util.Vector;
|
|
import org.postgresql.Field;
|
|
|
|
/* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/jdbc1/Attic/Jdbc1ResultSet.java,v 1.5 2003/02/04 09:20:10 barry Exp $
|
|
* This class implements the java.sql.ResultSet interface for JDBC1.
|
|
* However most of the implementation is really done in
|
|
* org.postgresql.jdbc1.AbstractJdbc1ResultSet
|
|
*/
|
|
public class Jdbc1ResultSet extends org.postgresql.jdbc1.AbstractJdbc1ResultSet implements java.sql.ResultSet
|
|
{
|
|
|
|
public Jdbc1ResultSet(Statement statement, Field[] fields, Vector tuples, String status, int updateCount, long insertOID, boolean binaryCursor)
|
|
{
|
|
super(statement, fields, tuples, status, updateCount, insertOID, binaryCursor);
|
|
}
|
|
|
|
public java.sql.ResultSetMetaData getMetaData() throws SQLException
|
|
{
|
|
return new Jdbc1ResultSetMetaData(rows, fields);
|
|
}
|
|
|
|
}
|
|
|