Originally Posted by
Eku
have added those jar file in the
..\Java\jdk1.6.0_05\jre\lib\ext\ Folder
DON'T add it there. Never add anything to the jre lib directories. That ext folder is for language extensions (the meaning of ext) and a JDBC Driver is
far from a language extension. Besides, what happens when you upgrade Java? What happens, when for one app you
need a newer version of a Driver, and for an older app you
need an older version?
Add the jarfile to your CLASSPATH (not your system classpath as the older/newer version problem still exists there, and most web containers and IDE's won't use that anyway), but rather, if you are using a jarfile, to the manifest, and if you are not using a jarfile, to the command line -cp option, or if you are using a web container/IDE configure it there.