Title: RE: [JDBC] I can't connect
> > String url = "jdbc:odbc:testing"; // I also
> tried with
>
> > "jdbc:postgres:testing";>
>
> "jdbc:postgresql:testing"
I don't think so. Try
"jdbc:postgresql://computername/testing"
Quoting Bart <[EMAIL PROTECTED]>:
> Hi,
>
> I installed debian 2.2r2 with _all_ the postgres-packages, I created a
> database and via psql I can do whatever I want with the DB. Now I'm
> trying to make a connection via a Java-program. I downloaded the
> jdbc-6.5-1.2.jar file and renamed it to
It works.
Thanks everyone!!!
Bart
---(end of broadcast)---
TIP 6: Have you searched our list archives?
http://www.postgresql.org/search.mpl
I think your url String should be
"jdbc:postgresql:testing"
and your Class.forName should be either
"org.postgresql.Driver" or "postgresql.Driver"
John L.
Quoting Bart <[EMAIL PROTECTED]>:
> Hi,
>
> I installed debian 2.2r2 with _all_ the postgres-packages, I created a
> database and via p
Bart:
Try setting CLASSPATH to the path for the jar itself, not the directory
in which you placed it.
On Wed, 21 Mar 2001, Dax Duskin wrote:
> Are you running postmaster with the -i option?
>
> Bart <[EMAIL PROTECTED]> on 03/21/2001 02:00:45 PM
> Subject: [JDBC] I c
Are you running postmaster with the -i option?
Bart <[EMAIL PROTECTED]> on 03/21/2001 02:00:45 PM
To: [EMAIL PROTECTED]
cc:(bcc: Dax Duskin/Evanston/ZSAssociates)
Subject: [JDBC] I can't connect
Hi,
I installed debian 2.2r2 with _all_ the postgres-packages, I created
Hi,
I installed debian 2.2r2 with _all_ the postgres-packages, I created a database and
via psql I can do whatever I want with the DB. Now I'm trying to make a connection via
a Java-program. I downloaded the jdbc-6.5-1.2.jar file and renamed it to jdbc.jar and
moved it to ~/jdk1.3/lib, set t