From: | "Jon Nielsen" <jonfn(at)image(dot)dk> |
---|---|
To: | <pgsql-interfaces(at)postgresql(dot)org> |
Subject: | RE: PG6.5 + JDBC + Linux + Kaffe |
Date: | 1999-06-23 18:13:16 |
Message-ID: | 010801bebda4$12029d40$ca0ba8c0@bilbo |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-interfaces |
Hi Daniele,
Your example does not work for two reasons:
1)
Your call to DriverManager is incorrect.
The correct form is either
Connection db = DriverManager.getConnection("jdbc:postgresql:DATABASE","USER","PASSWORD");
or
Connection db = DriverManager.getConnection("jdbc:postgresql://MACHINE/DATABASE","USER","PASSWORD");
2)
There is a bug in the 'error.properties' file which causes the JDBC driver not to return the correct error messages.
You can fix this yourself, by changing {1} to {0}, and {2} to {1} and so on. Then you should get the correct error message.
Hope that helps you
Jon Nielsen
jonfn(at)image(dot)dk
From | Date | Subject | |
---|---|---|---|
Next Message | Craig Orsinger | 1999-06-23 18:19:07 | Re: [INTERFACES] Trying to get started? |
Previous Message | Jon Nielsen | 1999-06-23 18:01:28 | RE: PG6.5 + JDBC + Linux + Kaffe |