David: Thanks for trying to lend a hand. Ok, I believe I am already doing this. And, I am running the applet on the web server itself using localhost:3306. So I have not even tried it accross the network yet. This should work first, right?

Let me show my directory structure and then my .jar file.
C:\JDBC
C:\JDBC\tools\
C:\JDBC\classes\
JDBC\*.java --all my .java files
tools\mm.mysql.jdbc-1.2c\ --then org.mm.....
classes\*.classes -- all my class files
when I create my jar file I do this command
jar cvf test.jar classes\*.* tools\*.*
My applet tag looks like this
'<applet code="classes\test.class" archive="test.jar" width=400 height=200></applet>'
my test.html file is in the c:\JDBC
mysql daemon is running as a service.
Then I do appletviewer test.html.
It loads with a JButton and when I click on the button I get the unable to load class error message because that is what I tell it to say if an Exception is caught while loading the driver.
Here is my code again
Lastly here is my classpath:
C:\jdk1.3.1_02\jre\lib\rt.jar;C:\jdk1.3.1_02\jre\lib\i18n.jar;C:\jdk1.3.1_02\lib\dt.jar;C:\jdk1.3.1_02\lib\tools.jar;C:\JDBC\tools\mm.mysql.jdbc-1.2c
I am also wondering if there isn't some problem with Class.forName() and executing outside of a main()?? I don't know. Just guessing.
Thanks for anything.
[ January 14, 2002: Message edited by: Gregg Bolinger ]
[ January 14, 2002: Message edited by: Gregg Bolinger ]