Applet JDBC Security

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ykhamitkar
    New Member
    • May 2007
    • 64

    Applet JDBC Security

    Hi there

    is there any security issue if I try to connect MS Access database using applet with JDBC-ODBC connection

    If there is what can be the solutuion

    Thanks
    Yogesh
  • BigDaddyLH
    Recognized Expert Top Contributor
    • Dec 2007
    • 1216

    #2
    Originally posted by ykhamitkar
    Is there any security issue if I try to connect MS Access database using applet with JDBC-ODBC connection

    If there is what can be the solutuion
    That particular driver is the worst driver. I believe it was just written as a "proof of concept". And I may be wrong, but I think it includes native code, in which case it is not going to be allowed to be run by an untrusted applet.

    My advice is to use a different DBMS like MySQL or Derby and not to use applets at all. Either write a desktop application or a web application with servlets and JSP.

    http://www.mysql.com/ http://db.apache.org/derby/

    Comment

    Working...