Here is a context diff from latest cvs
And I see why you couldn't apply the last diff, the setCatalog diff has
been backed out, that was causing the compile problem in the first
place.
This following one needs to be applied to allow the current cvs to
compile
Dave Cramer
import org.postgresql.core.Encoding;
/**
- * $Id: Connection.java,v 1.23 2001/08/04 19:46:56 momjian Exp $
+ * $Id: Connection.java,v 1.24 2001/08/07 17:45:29 momjian Exp $
*
* This abstract class is used by org.postgresql.Driver to open either the JDBC1 or
* JDBC2 versions of the Connection class.
this_driver = d;
this_url = url;
PG_DATABASE = database;
- PG_PASSWORD = info.put("password");
- PG_USER = info.put("user");
+ PG_PASSWORD = info.getProperty("password");
+ PG_USER = info.getProperty("user");
PG_PORT = port;
PG_HOST = host;
PG_STATUS = CONNECTION_BAD;