/access-export

Export and convert Microsoft® Access® databases to various formats including SQLite

Primary LanguageJavaMozilla Public License 2.0MPL-2.0

Build Status Coverage Status

access-export

A Java-based and therefore platform-independent tool to export and convert Microsoft® Access® databases to various formats. It uses Jackcess to read mdb and accdb files from Access® versions 97-2010. Currently only exports to SQLite.

Usage

Build

mvn clean package

This creates an executable JAR access-export-x.x.x.jar in the target directory.

Run

java -jar access-export-x.x.x.jar [-t <tables>] <source> <target>

The source must be an mdb or accdb file. The target file must not exist, it will be created.

  • -t <tables> : a comma-separated list of tables to export

Dependencies