From: | Peter Mount <peter(at)retep(dot)org(dot)uk> |
---|---|
To: | Jeff Duffy <jduffy(at)greatbridge(dot)com>, Andy Engdahl <andy(at)crophailmanagement(dot)com> |
Cc: | pgsql-hackers(at)postgresql(dot)org |
Subject: | Re: Re: PostgreSQL JDBC |
Date: | 2001-02-24 17:04:59 |
Message-ID: | 5.0.2.1.0.20010224170406.00a9fa50@mail.retep.org.uk |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
At 13:05 23/02/01 -0500, Jeff Duffy wrote:
>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.
I'd also remove the newInstance() as it will create a second object that
will just occupy memory (the class has a static initialiser).
Peter
From | Date | Subject | |
---|---|---|---|
Next Message | Adam Haberlach | 2001-02-24 18:18:10 | pg_atoi() behavior change? Intentional? |
Previous Message | Tom Lane | 2001-02-24 16:41:06 | Re: A patch for xlog.c |