How to convert MDB to SQLite in Android

前端 未结 4 712
栀梦
栀梦 2020-12-10 21:49

I have one Microsoft Access .MDB file and want to use that database in an Android application.

How can I convert the .mdb database to SQLite?

4条回答
  •  鱼传尺愫
    2020-12-10 22:25

    You can write your own - it's not very difficult

    1. Install SQlite on your desktop - just go to sqlite.org
    2. Get JDBC access to SQLite (there're a lot of JDBC drivers for SQLite)
    3. Get JDBC access to your MDB (MS-Access) using JDBC (common JDBC-ODBC bridge driver is ok)
    4. Voilà!

提交回复
热议问题