Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Type 4 JDBC driver for MS ACCESS(.mdb) database?

My Java application uses a .mdb database and i want to run this application on MAC OS for that am definitely gonna nead a TYPE 4 JDBC driver i have google and came across two - HXTT & StelsMDB but both are out of my reach

So if any body has some alternative or suggestions please reply.

Thanks in advance

like image 245
Jinith Avatar asked Dec 07 '22 00:12

Jinith


1 Answers

I've used jackcess to read the tables from an MDB and convert the database to sqlite3. Not ideal if you need to keep the .mdb format, but it allowed me to keep the database in a single file and made the database cross-platform.

like image 79
Jeff Knecht Avatar answered Dec 09 '22 14:12

Jeff Knecht