In addition to basic network restrictions, JDBC itself has sandbox limitations for applets, so only a signed applet will work.
In general, if you thing you need a signed applet, it's an indication that you're trying to do things the Wrong Way.
What you are doing is attempting to create a 2-tier application. That's not a good idea for many reasons, the most infamous of which was exemplified by the SQL Slammer worm. While it's a lot more work to build a 3-tier app, you insulate your DBMS from external attackers by doing so.
Also, note that neither MS Access nor MS FoxPro are designed to work in a multi-user concurrent access environment and can easily become hopelessly corrupted if the attempt is made. For a web app, you're better off using SQL server, Oracle, DB2, MySQL, PostgreSQL or any of a host of other multi-user DBMS's that have good JDBC support.
Also, the correct English spellings are "please" and "you".
[ August 11, 2005: Message edited by: Tim Holloway ]