diff options
| author | PostgreSQL Daemon <webmaster@postgresql.org> | 2004-01-19 20:07:14 +0000 |
|---|---|---|
| committer | PostgreSQL Daemon <webmaster@postgresql.org> | 2004-01-19 20:07:14 +0000 |
| commit | 2a9bf5b33d0b82e9f483f6a5ced9d71e1c009441 (patch) | |
| tree | 8c0c38494985b8dbfd2311b5be51fa76a271ba17 /src/interfaces/jdbc/org/postgresql/jdbc3/Jdbc3Statement.java | |
| parent | 9bd681a5220186230e0ea0f718a71af7ebe4b560 (diff) | |
| download | postgresql-2a9bf5b33d0b82e9f483f6a5ced9d71e1c009441.tar.gz | |
JDBC is now on GBorg
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/jdbc3/Jdbc3Statement.java')
| -rw-r--r-- | src/interfaces/jdbc/org/postgresql/jdbc3/Jdbc3Statement.java | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/jdbc3/Jdbc3Statement.java b/src/interfaces/jdbc/org/postgresql/jdbc3/Jdbc3Statement.java deleted file mode 100644 index 095217da5f..0000000000 --- a/src/interfaces/jdbc/org/postgresql/jdbc3/Jdbc3Statement.java +++ /dev/null @@ -1,32 +0,0 @@ -package org.postgresql.jdbc3; - - -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/jdbc3/Jdbc3Statement.java,v 1.6 2003/11/29 19:52:11 pgsql Exp $ - * This class implements the java.sql.Statement interface for JDBC3. - * However most of the implementation is really done in - * org.postgresql.jdbc3.AbstractJdbc3Statement or one of it's parents - */ -public class Jdbc3Statement extends org.postgresql.jdbc3.AbstractJdbc3Statement implements java.sql.Statement -{ - - public Jdbc3Statement (Jdbc3Connection c) - { - super(c); - } - - public BaseResultSet createResultSet (Field[] fields, Vector tuples, String status, int updateCount, long insertOID, boolean binaryCursor) throws SQLException - { - return new Jdbc3ResultSet(this, fields, tuples, status, updateCount, insertOID, binaryCursor); - } - - public PGRefCursorResultSet createRefCursorResultSet (String cursorName) throws SQLException - { - return new Jdbc3RefCursorResultSet(this, cursorName); - } -} |
