From a4e3943b3fe6b4fdbca58d5fb41bbafd22a92c15 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 9 Oct 2000 16:48:19 +0000 Subject: Back out Gunnar R|nning jdbc changes. --- .../jdbc/org/postgresql/PGStatement.java | 26 ---------------------- 1 file changed, 26 deletions(-) delete mode 100644 src/interfaces/jdbc/org/postgresql/PGStatement.java (limited to 'src/interfaces/jdbc/org/postgresql/PGStatement.java') diff --git a/src/interfaces/jdbc/org/postgresql/PGStatement.java b/src/interfaces/jdbc/org/postgresql/PGStatement.java deleted file mode 100644 index 85fd5a5b85e..00000000000 --- a/src/interfaces/jdbc/org/postgresql/PGStatement.java +++ /dev/null @@ -1,26 +0,0 @@ -package org.postgresql; - -import java.sql.Statement; -import java.sql.SQLException; - -public abstract class PGStatement implements Statement { - public ObjectPool inusemap_dim1[]; - public ObjectPool inusemap_dim2[]; - protected Connection connection; - - public PGStatement(Connection connection){ - this.connection = connection; - inusemap_dim1 = connection.pg_stream.factory_dim1.getObjectPoolArr(); - inusemap_dim2 = connection.pg_stream.factory_dim2.getObjectPoolArr(); - } - - public void deallocate(){ - connection.pg_stream.deallocate(this); - } - - public void close() throws SQLException { - deallocate(); - connection.pg_stream.factory_dim1.releaseObjectPoolArr(inusemap_dim1); - connection.pg_stream.factory_dim2.releaseObjectPoolArr(inusemap_dim2); - } -} -- cgit v1.2.3