How to read (and write) MS Access files (.mdb) in Java? Is there any open-source jdbc driver for MS Access?
+6
A:
You can use the open source Jackcess library to read an Access database through Java.
However, from the project FAQ:
Jackcess currently supports only Access 2000 databases. Access 2003 is not supported.
For later versions of Access, you can use Sun's JDBC-ODBC Bridge (step-by-step tutorial).
Bill the Lizard
2009-03-16 17:06:48
Jackcess is good, but it only works for Access 2000 (JET4) files.
Yuval A
2009-03-16 17:13:20
@Yuval: Thanks, I edited my answer to include that information.
Bill the Lizard
2009-03-16 17:49:31
+4
A:
If you'd like to use Access as a JDBC database, check out the JDBC-ODBC Bridge driver.
Henning
2009-03-16 17:10:48