RE: [JDBC] Failed Connection?

2001-04-19 Thread Joe Shevland
the options for postmaster) and it is using the -i option. I can use pgaccess to view the database, so the database name, username and password work. What else can it be??? Gremlins? :) Sounds generally OK, perhaps the JDBC URL you are using is invalid? Can you attach the code you're using

[JDBC] Still having trouble getting JDBC working

2001-04-19 Thread Corey Mosher
Hi Can anyone help me with this problem? I have jdk1.2.2 installed on a freeBSD system. My class path in .cshrc is as follows: set CLASSPATH = (/usr/local/lib/postgresql.jar) I get this error: Exception caught. java.lang.ClassNotFoundException: org.postgresql.Driver Exception caught.

[JDBC] A Bug Fix - Is this a real bug? Has this already been fixed?

2001-04-19 Thread Hunter Hillegas
Saw this on a EJB list I'm on... Does anyone know if this is in fact an error and if the driver needs to be updated? Hunter -- Forwarded Message From: Christofer Sandberg [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: 20 Apr 2001 00:00:01 +0200 To: [EMAIL PROTECTED] Subject: Re:

Re: [JDBC] Still having trouble getting JDBC working

2001-04-19 Thread Dave Cramer
Corey, This looks like it should work. The only thing I can think of is that you need to export the classpath so that it is visible outside of the .cshrc file? what to you get when you execute echo $CLASSPATH The only other possibility is that you are using a real old version of the driver.

Re: [JDBC] Still having trouble getting JDBC working

2001-04-19 Thread jlemcke
There are 3 fundamental steps to establishing a jdbc connection. 1. Installation of postgresql.jar - If the postgresql.jar file is not accessible to the Java runtime environment you will get a 'java.lang.ClassNotFoundException: org.postgresql.Driver' exception.