JDBC Applet
I created a simple JDBC applet to connect to Oracle and select something from DB. When I used appletviewer, it said
Exception occurred during_event dispatching:
java.lang.NoClassDefFound Error" oracle/jdbc/driver/OracleDriver
But everything is working when I tranfered this JDBC connect to application.
I don't know what's going on.
Thanks for help
Adele
[414 byte] By [
adelezhou] at [2007-9-26 1:19:41]

Make sure that you are putting the driver class in the right place so the applet can reference it. If you moved the applet after compiling it, then make sure your oracle driver is still in the same relative location. If the application you ran and the applet are in the same directory, I don't know what the problem could be...
GN