diff options
author | Peter Mount <peter@retep.org.uk> | 1999-09-14 22:43:38 +0000 |
---|---|---|
committer | Peter Mount <peter@retep.org.uk> | 1999-09-14 22:43:38 +0000 |
commit | 3f68139373474b7dbd7972be03bfbd3e8d2722d8 (patch) | |
tree | 1d5d5ee639d8b27910dc083b02463f1e233675e8 /src | |
parent | 408e6e02ef123fc56921b743671b22389e104d81 (diff) | |
download | postgresql-3f68139373474b7dbd7972be03bfbd3e8d2722d8.tar.gz postgresql-3f68139373474b7dbd7972be03bfbd3e8d2722d8.zip |
An abstract declaration for the close() method was missed out of the previous
commit to CVS.
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/jdbc/postgresql/Connection.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/interfaces/jdbc/postgresql/Connection.java b/src/interfaces/jdbc/postgresql/Connection.java index 5433e336c7b..f8e7c65e228 100644 --- a/src/interfaces/jdbc/postgresql/Connection.java +++ b/src/interfaces/jdbc/postgresql/Connection.java @@ -10,7 +10,7 @@ import postgresql.largeobject.*; import postgresql.util.*; /** - * $Id: Connection.java,v 1.18 1999/09/14 05:50:33 peter Exp $ + * $Id: Connection.java,v 1.19 1999/09/14 22:43:38 peter Exp $ * * This abstract class is used by postgresql.Driver to open either the JDBC1 or * JDBC2 versions of the Connection class. @@ -693,6 +693,8 @@ public abstract class Connection */ protected abstract java.sql.ResultSet getResultSet(postgresql.Connection conn, Field[] fields, Vector tuples, String status, int updateCount) throws SQLException; + public abstract void close() throws SQLException; + /** * Overides finalize(). If called, it closes the connection. * |