Обсуждение: HELP : Can't load JDBC driver !
Hi,
Yes, I cant't load the JDBC driver !!!
There must be a silly set-up somewhere, but I
can't find it.
Here some informations that might help you :
1. Mandake 7.2
2. the postmaster is run from init script as follow : su -l postgres -c "/usr/bin/pg_ctl -D $PGDATA -o '-i' -p
/usr/bin/postmaster start > /dev/null 2>&1"
3. the very last line of my /var/lib/pgsql/data/pg_hba.conf :
local all trust
host all 127.0.0.1 255.255.255.255 trust
4. the JDBC driver is in the CLASSPATH :...;/home/nusa/Java/PostgreSQL/jdbc7.0-1.2.jar
5. in my java file :
import java.sql.*; // no import org.postgresql.* ! ... try { Clss.forName("org.postgresql.Driver"); } catch
(ClassNotFoundExceptione) {} ...
Can someone help me ?
Thanks,
nusa.
Nusa,
I suggest that you take your question to the pgsql-jdbc list, a list
specifically for JDBC interfacing with Postgres. See www.postgresql.org
for directions on how to subscribe.
-Josh
______AGLIO DATABASE SOLUTIONS___________________________ Josh Berkus Complete
informationtechnology josh@agliodbs.com and data management solutions (415) 565-7293 for law firms, small
businesses fax 621-2533 and non-profit organizations. San Francisco
Please send JDBC related emails to the JDBC list :-) At 00:54 21/04/01 +0100, nusa wrote: >Hi, > >Yes, I cant't load the JDBC driver !!! >There must be a silly set-up somewhere, but I >can't find it. >4. the JDBC driver is in the CLASSPATH : > ...;/home/nusa/Java/PostgreSQL/jdbc7.0-1.2.jar Ah, you have a semicolon ; instead of colon. ; is for Windows, : for unix. Please read: http://jdbc.postgresql.org/docs/#install Peter