up vote 1 down vote favorite
share [g+] share [fb]

I want to creat a new report, using Crystal Reports. I downloaded the Postgres driver but when I want to create the connections it shows an error "JDBC Driver not found"

How can I solve it?

Thanks:)

link|improve this question
feedback

2 Answers

Putting your driver jar file under c:/Program Files/Java/jre_xxx/lib/ext/ should do the trick.

link|improve this answer
feedback

As Guido showed you can put this .jar file into JRE lib/ext directory. But I prefer:

  • create directory where you can put such .jar files (c:\jars, /usr/local/jars)
  • set CLASSPATH environment variable to this directory:
    • CLASSPATH=.;c:\jars\*;
    • export CLASSPATH=.:/usr/local/jars/*
link|improve this answer
feedback

Your Answer

 
or
required, but never shown