> I have spent a good deal of time looking for how to connect an applet
> to a remote database (MS Access) using JDBC, as yet I have found no
[quoted text clipped - 17 lines]
> Their seems to be a good few topics posted on this subject, but I have
> seen no workable solutions!!!
First, the URL connection string is a function of the JDBC driver. So
look at the documentation for the JDBC driver.
Second, get your program working as an application first. That way you
can eliminate any applet security issues from the equation.
Next, start worrying about applet security issues. For starters, the
applet can only talk to the server that hosts the applet. So the
database needs to run on the same server (or you need to employ some
trickery). Second, I would be concerned about using the JDBC-ODBC
bridge in an applet. I would imagine that it uses resources that are
applet no-nos. But I am not certain of this.
If you can't get around the applet security, look into signing your applet.
HTH,
Ray

Signature
XML is the programmer's duct tape.