View Single Post
  #3 (permalink)  
Old 05-31-2007, 04:29 AM
Nick15 Nick15 is offline
Member
 
Join Date: May 2007
Posts: 39
Nick15 is on a distinguished road
you have to insert the jar of the driver JDBC in the classpath.
It would be something like that:
java -cp pgsqlxx.jar;miapp.jar com.project.Main
or maybe:
java -cp pgsqlxx.jar -jar miapp.jar (if the manifest og myapp.jar is correct and include the Main class). ( http://java.sun.com/j2se/1.4.2/docs/...#37;20Manifest )

good luck

Last edited by Nick15 : 06-01-2007 at 03:14 AM.
Reply With Quote