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/jdbc1/Jdbc1PreparedStatement.java | |
| parent | 9bd681a5220186230e0ea0f718a71af7ebe4b560 (diff) | |
| download | postgresql-2a9bf5b33d0b82e9f483f6a5ced9d71e1c009441.tar.gz | |
JDBC is now on GBorg
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/jdbc1/Jdbc1PreparedStatement.java')
| -rw-r--r-- | src/interfaces/jdbc/org/postgresql/jdbc1/Jdbc1PreparedStatement.java | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/jdbc1/Jdbc1PreparedStatement.java b/src/interfaces/jdbc/org/postgresql/jdbc1/Jdbc1PreparedStatement.java deleted file mode 100644 index a80928ebdd..0000000000 --- a/src/interfaces/jdbc/org/postgresql/jdbc1/Jdbc1PreparedStatement.java +++ /dev/null @@ -1,26 +0,0 @@ -package org.postgresql.jdbc1; - - -import java.sql.*; -import org.postgresql.PGRefCursorResultSet; -import org.postgresql.core.BaseResultSet; -import org.postgresql.core.Field; - -public class Jdbc1PreparedStatement extends AbstractJdbc1Statement implements PreparedStatement -{ - - public Jdbc1PreparedStatement(Jdbc1Connection connection, String sql) throws SQLException - { - super(connection, sql); - } - - public BaseResultSet createResultSet (Field[] fields, java.util.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); - } -} |
