Skip to content
Snippets Groups Projects
Commit 8304a395 authored by Barry Lind's avatar Barry Lind
Browse files

minor improvements on Dave's last checkin

parent 01da8e91
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,7 @@ import org.postgresql.util.*; ...@@ -11,7 +11,7 @@ import org.postgresql.util.*;
import org.postgresql.core.*; import org.postgresql.core.*;
/** /**
* $Id: Connection.java,v 1.33 2001/10/31 20:26:01 davec Exp $ * $Id: Connection.java,v 1.34 2001/11/01 01:08:36 barry Exp $
* *
* This abstract class is used by org.postgresql.Driver to open either the JDBC1 or * This abstract class is used by org.postgresql.Driver to open either the JDBC1 or
* JDBC2 versions of the Connection class. * JDBC2 versions of the Connection class.
...@@ -110,16 +110,11 @@ public abstract class Connection ...@@ -110,16 +110,11 @@ public abstract class Connection
if (info.getProperty("user") == null) if (info.getProperty("user") == null)
throw new PSQLException("postgresql.con.user"); throw new PSQLException("postgresql.con.user");
PG_PASSWORD = info.getProperty("password");
// allow a null password D.C.
if ( PG_PASSWORD== null)
PG_PASSWORD = "";
this_driver = d; this_driver = d;
this_url = url; this_url = url;
PG_DATABASE = database; PG_DATABASE = database;
PG_USER = info.getProperty("user"); PG_USER = info.getProperty("user");
PG_PASSWORD = info.getProperty("password","");
PG_PORT = port; PG_PORT = port;
PG_HOST = host; PG_HOST = host;
PG_STATUS = CONNECTION_BAD; PG_STATUS = CONNECTION_BAD;
......
...@@ -33,7 +33,7 @@ public class Driver implements java.sql.Driver ...@@ -33,7 +33,7 @@ public class Driver implements java.sql.Driver
protected static final int ERROR = 3; protected static final int ERROR = 3;
protected static final int FATAL = 4; protected static final int FATAL = 4;
private static int logLevel= DEBUG; private static int logLevel= FATAL;
static static
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment