Posted By:
Stephen_McConnell
Posted On:
Friday, April 18, 2003 05:09 AM
You need to jar the JDBC driver with your applet and reference the jar file in your Applet tag...
You might want to look at another solution, if you have large rowsets.
Most implementations of remote database calls return something like a cursor. Each time you examine a rowset, you make a call back to the database server and it returns the row set..... Very slow!!!!
What I have implemented is creating a RMI program on the server side that makes the query call packages up the information you want in a Vector of objects and then returns the Vector back to the applet. This speeds up the process 1000% times.
Stephen McConnell