diff options
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/jdbc1/Jdbc1CallableStatement.java')
| -rw-r--r-- | src/interfaces/jdbc/org/postgresql/jdbc1/Jdbc1CallableStatement.java | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/jdbc1/Jdbc1CallableStatement.java b/src/interfaces/jdbc/org/postgresql/jdbc1/Jdbc1CallableStatement.java deleted file mode 100644 index 697a1869ab..0000000000 --- a/src/interfaces/jdbc/org/postgresql/jdbc1/Jdbc1CallableStatement.java +++ /dev/null @@ -1,28 +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; - -public class Jdbc1CallableStatement extends AbstractJdbc1Statement implements java.sql.CallableStatement -{ - - public Jdbc1CallableStatement(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); - } -} - |
