I want to create a new report using Crystal Reports. I downloaded the Postgres driver but when I want to create the connection, it shows an error "JDBC Driver not found"
How can I solve it?
Thanks :)
I want to create a new report using Crystal Reports. I downloaded the Postgres driver but when I want to create the connection, it shows an error "JDBC Driver not found"
How can I solve it?
Thanks :)
As Guido showed you can put this .jar
file into JRE lib/ext
directory. But I prefer:
.jar
files (c:\jars
, /usr/local/jars
)CLASSPATH
environment variable to this directory:
CLASSPATH=.;c:\jars\*;
export CLASSPATH=.:/usr/local/jars/*
Putting your driver jar file under c:/Program Files/Java/jre_xxx/lib/ext/ should do the trick.