I'm trying to write an
applet that will utilize
JDBC. Unfortunately, whenever I try to load the driver for the database, I get an AccessControlException. This is my error message (toString() method invoked on the caught exception):
This is the code that produces that error:
I've pasted the exact same code into another
Java application (this one wasn't an applet) and I found that it executes perfectly. From that, I would assume that the security exception I'm getting is due to the limited security access of the Applet.
Is there any way to use JDBC from an Applet?
Thanks,
Corey
[ May 02, 2003: Message edited by: Corey McGlone ]