Easysoft JDBC-ODBC BridgeWhy do I get a "No suitable Driver" error in my applet when the JOB Demo works fine? |
|
One reason for this is a known problem with Internet Explorer 5 loading classes by name.
The line responsible for loading the driver
Class.forNam ("easysoft.sql.jobDriver");
should be changed to
Class.forNam ("easysoft.sql.jobDriver").newInstance();