View Single Post

   
  #2 (permalink)  
Old 04-16-2008, 12:53 AM
Guillaume Cottenceau
 
Posts: n/a
Default Re: PROBLEM WITH DRIVER LOAD

Wagner <wagner.and 'at' gmail.com> writes:

> Hi, i'm new in jdbc and
> my problem is, the driver doesn't load,
> the code is:
>
> public static void connect(){
> try{
> Class.forName("org.postgresql.Driver");
> }catch(ClassNotFoundException cnfex){
> System.err.println("driver load fail");
>
> //the problem is here, i don't know what library i need and what i need to
> do with the classpath to this works,


As documented in multiple places, you have to put the
postgresql.jar in your classpath. This depends on your java
environment, but generally you can achieve this by using the
"-cp" argument to the "java" program you invoke.

--
Guillaume Cottenceau

---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo@postgresql.org so that your
message can get through to the mailing list cleanly

Reply With Quote