| From: | tna(at)FIZ-Karlsruhe(dot)DE |
|---|---|
| To: | pgsql-general(at)postgresql(dot)org |
| Subject: | AW: Using the JDBC Driver in version 7.02 |
| Date: | 2000-07-11 13:48:57 |
| Message-ID: | 41EA24EC431CD411AA8200008385014F490FAB@pc.FIZ-Karlsruhe.DE |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-general |
> > > Justin Jaynes wrote:
> > > >
> > > > the line:
> > > >
> > > > Class.forName("org.postgresql.Driver");
>
> Try:
>
> Class.forName("postgresql.Driver");
>
In 7.02 the above is WRONG,
Class.forName("org.postgresql.Driver");
is right ...
(Drivername has changed in this version)
> Ofcource, check that postgresql.jar is in classpath. If Java >= 1.2,
> you can instead drop it in $JAVA_HOME/jre/lib/ext.
>
> > > >
> > > > I get an error that the DriverManager cannot find a
> suitable driver.
> > > >
> > > > The code I use to connect goes as follows:
> > > >
> > > > Connection chamber =
> DriverManager.getConnection("localhost:5432");
> >
> > This isn't a valid JDBC URL. You'll need something like:
> >
> > jdbc:postgresql:database <= Use when on local host
> > jdbc:postgresql://server/database <= Use when on remote host
> >
>
>
> --
> marko
>
>
>
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Alex Bolenok | 2000-07-11 14:16:12 | PostgreSQL, ODBCExpress and locales |
| Previous Message | tna | 2000-07-11 13:47:04 | AW: JDBC and LOB |