Commit 3f681393 authored by Peter Mount's avatar Peter Mount

An abstract declaration for the close() method was missed out of the previous

commit to CVS.
parent 408e6e02
...@@ -10,7 +10,7 @@ import postgresql.largeobject.*; ...@@ -10,7 +10,7 @@ import postgresql.largeobject.*;
import postgresql.util.*; 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 * This abstract class is used by postgresql.Driver to open either the JDBC1 or
* JDBC2 versions of the Connection class. * JDBC2 versions of the Connection class.
...@@ -693,6 +693,8 @@ public abstract class Connection ...@@ -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; 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. * Overides finalize(). If called, it closes the connection.
* *
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment