RE: [JDBC] I can't connect

2001-03-25 Thread Wiley, Peter
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"

Re: [JDBC] I can't connect

2001-03-22 Thread Peter T Mount
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

Re: [JDBC] I can't connect

2001-03-21 Thread Bart
It works. Thanks everyone!!! Bart ---(end of broadcast)--- TIP 6: Have you searched our list archives? http://www.postgresql.org/search.mpl

Re: [JDBC] I can't connect

2001-03-21 Thread jlemcke
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

Re: [JDBC] I can't connect

2001-03-21 Thread Bob Kline
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

Re: [JDBC] I can't connect

2001-03-21 Thread Dax Duskin
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

[JDBC] I can't connect

2001-03-21 Thread Bart
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