From: | Jeff Duffy <jduffy(at)greatbridge(dot)com> |
---|---|
To: | Andy Engdahl <andy(at)crophailmanagement(dot)com> |
Cc: | pgsql-hackers(at)postgresql(dot)org |
Subject: | Re: PostgreSQL JDBC |
Date: | 2001-02-23 18:05:00 |
Message-ID: | Pine.LNX.4.21.0102231303210.5148-100000@cairhien.alanne.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On Fri, 23 Feb 2001, Andy Engdahl wrote:
> I seem to be having some problems w/ the psql jdbc driver. I'm able to load the driver, but as soon as I try to connect w/ the database. here's my code:
>
> import java.sql.*;
>
> public class dataBase {
> public static void main(String [] args){
> try {
> Class.forName("org.postgresql.DriverClass").newInstance();
The class instance will load successfully, but this isn't what you
want. Replace org.postgresql.DriverClass with org.postgresql.Driver.
Jeff
--
Errors have occurred.
We won't tell you where or why.
Lazy programmers.
-- Hacking haiku
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2001-02-23 18:05:24 | Re: Lock structures |
Previous Message | Bruce Momjian | 2001-02-23 18:01:01 | Re: Lock structures |