summaryrefslogtreecommitdiff
path: root/src/interfaces/jdbc/postgresql/Connection.java
diff options
context:
space:
mode:
authorMarc G. Fournier1998-02-20 13:11:26 +0000
committerMarc G. Fournier1998-02-20 13:11:26 +0000
commit373b85329d3095e367b3c7d170042a42b9582065 (patch)
tree112220ccd8bfbf56c17697f0c404e0f0dcd4f604 /src/interfaces/jdbc/postgresql/Connection.java
parentb76e4374655ef2961409f4334f8ae4a40e666f22 (diff)
Missign a comma...
From: AA van Raalte <[email protected]>
Diffstat (limited to 'src/interfaces/jdbc/postgresql/Connection.java')
-rw-r--r--src/interfaces/jdbc/postgresql/Connection.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/jdbc/postgresql/Connection.java b/src/interfaces/jdbc/postgresql/Connection.java
index 8dd980e2f06..75515da474e 100644
--- a/src/interfaces/jdbc/postgresql/Connection.java
+++ b/src/interfaces/jdbc/postgresql/Connection.java
@@ -145,7 +145,7 @@ public class Connection implements java.sql.Connection
if(info.getProperty("user")==null)
throw new SQLException("The user property is missing. It is mandatory.");
if(info.getProperty("password")==null)
- throw new SQLException("The password property is missing. It is mandatory.")
+ throw new SQLException("The password property is missing. It is mandatory.");
this_driver = d;
this_url = new String(url);