diff options
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/jdbc1/Jdbc1Statement.java')
-rw-r--r-- | src/interfaces/jdbc/org/postgresql/jdbc1/Jdbc1Statement.java | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/jdbc1/Jdbc1Statement.java b/src/interfaces/jdbc/org/postgresql/jdbc1/Jdbc1Statement.java deleted file mode 100644 index 0cfc4a61426..00000000000 --- a/src/interfaces/jdbc/org/postgresql/jdbc1/Jdbc1Statement.java +++ /dev/null @@ -1,32 +0,0 @@ -package org.postgresql.jdbc1; - - -import java.sql.*; -import java.util.Vector; -import org.postgresql.PGRefCursorResultSet; -import org.postgresql.core.BaseResultSet; -import org.postgresql.core.Field; - -/* $PostgreSQL: pgsql/src/interfaces/jdbc/org/postgresql/jdbc1/Jdbc1Statement.java,v 1.7 2003/11/29 19:52:10 pgsql Exp $ - * This class implements the java.sql.Statement interface for JDBC1. - * However most of the implementation is really done in - * org.postgresql.jdbc1.AbstractJdbc1Statement - */ -public class Jdbc1Statement extends org.postgresql.jdbc1.AbstractJdbc1Statement implements java.sql.Statement -{ - - public Jdbc1Statement (Jdbc1Connection c) - { - super(c); - } - - public BaseResultSet createResultSet (Field[] fields, Vector tuples, String status, int updateCount, long insertOID, boolean binaryCursor) throws SQLException - { - return new Jdbc1ResultSet(this, fields, tuples, status, updateCount, insertOID, binaryCursor); - } - - public PGRefCursorResultSet createRefCursorResultSet (String cursorName) throws SQLException - { - return new Jdbc1RefCursorResultSet(this, cursorName); - } -} |