Ok, I have been trying to get this to work for about a week now and I finally did it!! So, for all those struggling with it, here is a complete instruction set on what I did.
System Specs Server - Windows 2000 Advanced Server running as Web Server
Database - MySQL Max 4.0
MySQL Driver - mm.mysql.jdbc-1.2c
JDK 1.3.1_02
Java Editor - JCreator Pro 2.0
CLASSPATH INSTRUCTIONS I had to set the CLASSPATH inside my editor and point it to the MySQL Driver. I had initially set the CLASSPATH in my Environment Variables, however, my editor was over-riding those.
JAR instructions For
testing purposes here were my files:
LoadDriver.java Test.html
JAR Command Line
JAR cvf test1.jar classes\*.*
As you can see in my HTML file, I then point the archive PARAM to my test1.jar as well as my mySQL_uncomp.jar. This way, the
applet knows where all the code is.
Misc Hints I did not use any certification or trust policies, nor did I jarsign my JAR files. The reason I didn't have to is because the only file system I am accessing is the same one the Applet originates from, the Web Server. However, if you wish to manipulate anything on the client machine, you must authenticate your applet to the browser and make it a trusted applet.
I hope that this helps some people having the same problem I was having. If anyone has any question about what I did, please feel free to contact me.
Thanks for everyones help in me resolving this issue.