GitXplorerGitXplorer
t

mdb-sqlite

public
2 stars
4 forks
18 issues

Commits

List of commits on branch master.
Unverified
a5b1bb3b7eaba83934687fc445ae899821e77ba2

Update README.md

ttinogomes committed 9 years ago
Unverified
4a7b87984e5814a6ac3a8486d2b31ceb5f508f16

Create README.md

ttinogomes committed 9 years ago
Unverified
14482529a88657874c0a1e5c2f675c88d6deab9f

Add support for OLE, binary, and float types.

committed 16 years ago
Unverified
5196ab57828110dececb7bde5a353d447b2eef9f

Prefix index names with the name of their enclosing table, to prevent name conflicts.

committed 16 years ago
Unverified
d03e8533aa8891f3842be8255af498dc85e0a11d

Add support for conveying indexes.

committed 16 years ago
Unverified
8abdd9ae61856a06d4a86066549b05433a9b33a0

Work around missing bool support in the SQLite JDBC driver's setObject

committed 16 years ago

README

The README file for this repository.

mdb-sqlite

Automatically exported from code.google.com/p/mdb-sqlite

Description

Provides automated conversion of MS Access 2000 databases to SQLite on any platform, utilizing Jackcess and SQLite Java libraries. No native driver required.

MDB-SQLite is used by Plausible Labs to read government-supplied Access databases.

Usage

To compile, run:

$ ant dist

This will create a standalone jar in dist/mdb-sqlite.jar

To convert a database file:

$ java -jar dist/mdb-sqlite.jar source.mdb output.sqlite

Changes

1.0.2 Release

  • Prefix index names with the table names to prevent name conflicts when converting indixes.

1.0.1 Release

  • Work-around around the SQLite JDBC drivers lack of support for boolean values

  • Add support for converting indexes

1.0 Release

  • Initial Release