From 2a9bf5b33d0b82e9f483f6a5ced9d71e1c009441 Mon Sep 17 00:00:00 2001 From: PostgreSQL Daemon Date: Mon, 19 Jan 2004 20:07:14 +0000 Subject: JDBC is now on GBorg --- .../jdbc/org/postgresql/jdbc3/Jdbc3ResultSet.java | 46 ---------------------- 1 file changed, 46 deletions(-) delete mode 100644 src/interfaces/jdbc/org/postgresql/jdbc3/Jdbc3ResultSet.java (limited to 'src/interfaces/jdbc/org/postgresql/jdbc3/Jdbc3ResultSet.java') diff --git a/src/interfaces/jdbc/org/postgresql/jdbc3/Jdbc3ResultSet.java b/src/interfaces/jdbc/org/postgresql/jdbc3/Jdbc3ResultSet.java deleted file mode 100644 index 903618ae65..0000000000 --- a/src/interfaces/jdbc/org/postgresql/jdbc3/Jdbc3ResultSet.java +++ /dev/null @@ -1,46 +0,0 @@ -package org.postgresql.jdbc3; - - -import java.sql.*; -import java.util.Vector; -import org.postgresql.core.Field; -import org.postgresql.core.BaseStatement; - -/* $PostgreSQL: pgsql/src/interfaces/jdbc/org/postgresql/jdbc3/Jdbc3ResultSet.java,v 1.6 2003/11/29 19:52:11 pgsql Exp $ - * This class implements the java.sql.ResultSet interface for JDBC3. - * However most of the implementation is really done in - * org.postgresql.jdbc3.AbstractJdbc3ResultSet or one of it's parents - */ -public class Jdbc3ResultSet extends org.postgresql.jdbc3.AbstractJdbc3ResultSet implements java.sql.ResultSet -{ - - public Jdbc3ResultSet(BaseStatement 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 Jdbc3ResultSetMetaData(rows, fields); - } - - public java.sql.Clob getClob(int i) throws SQLException - { - wasNullFlag = (this_row[i - 1] == null); - if (wasNullFlag) - return null; - - return new Jdbc3Clob(connection, getInt(i)); - } - - public java.sql.Blob getBlob(int i) throws SQLException - { - wasNullFlag = (this_row[i - 1] == null); - if (wasNullFlag) - return null; - - return new Jdbc3Blob(connection, getInt(i)); - } - -} - -- cgit v1.2.1