diff options
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/Driver.java.in')
-rw-r--r-- | src/interfaces/jdbc/org/postgresql/Driver.java.in | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/Driver.java.in b/src/interfaces/jdbc/org/postgresql/Driver.java.in index b66e1823853..e37428491ac 100644 --- a/src/interfaces/jdbc/org/postgresql/Driver.java.in +++ b/src/interfaces/jdbc/org/postgresql/Driver.java.in @@ -6,7 +6,7 @@ * Copyright (c) 2003, PostgreSQL Global Development Group * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Attic/Driver.java.in,v 1.29 2003/05/29 03:22:48 barry Exp $ + * $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Attic/Driver.java.in,v 1.30 2003/05/29 04:39:51 barry Exp $ * *------------------------------------------------------------------------- */ @@ -198,7 +198,8 @@ public class Driver implements java.sql.Driver public DriverPropertyInfo[] getPropertyInfo(String url, Properties info) throws SQLException { //This method isn't really implemented - Properties p = parseURL(url, info); + //we just parse the URL to ensure it is valid + parseURL(url, info); return new DriverPropertyInfo[0]; } @@ -261,8 +262,6 @@ public class Driver implements java.sql.Driver { int state = -1; Properties urlProps = new Properties(defaults); - String key = ""; - String value = ""; String l_urlServer = url; String l_urlArgs = ""; |