vote up 3 vote down star

How to read (and write) MS Access files (.mdb) in Java? Is there any open-source jdbc driver for MS Access?

flag

71% accept rate
MDF is not a common Jet file extension. – David W. Fenton Mar 18 at 0:44
Thanks, I updated question. – fauxbody Mar 19 at 12:18

2 Answers

vote up 6 vote down check

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).

link|flag
Jackcess is good, but it only works for Access 2000 (JET4) files. – Yuval A Mar 16 at 17:13
@Yuval: Thanks, I edited my answer to include that information. – Bill the Lizard Mar 16 at 17:49
vote up 3 vote down

If you'd like to use Access as a JDBC database, check out the JDBC-ODBC Bridge driver.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.