Create an Access database file (.mdb or .accdb) using Java

后端 未结 5 660
走了就别回头了
走了就别回头了 2020-12-06 07:02

Currently I have one application in which I am able to access .mdb or .accdb file with JdbcOdbcDriver to append some data.

Class.forName(\"sun.jdbc.odbc.Jdb         


        
5条回答
  •  渐次进展
    2020-12-06 07:42

    It looks like there is at least one option for connecting directly to .mdb without the JdbcOdbcDriver, that that option is commercial. See here. If the setup is what you're trying to avoid, have you considered using something an embedded database like sqlite?

提交回复
热议问题