How can I save a Microsoft Access database as .sqlite database?

Go To StackoverFlow.com

0

Are there any add-ons or something that can enable Microsoft Access to save its database as .sqlite?

Or do you know of any other way I can convert them, both ways.

Thanx a lot

2012-04-04 06:48
by Gillan
Unfortunately they are completely different, both the program language and the SQL syntax, even if you track down an app I feel this would be better to do manually - Matt Donnan 2012-04-04 08:00
this is pretty much duplicated i believe. - nawfal 2012-04-04 08:06
Please don't keep asking the same question: http://stackoverflow.com/questions/9924311/how-can-i-convert-my-access-database-accdb-to-a-sqlite-database-sqlit - Fionnuala 2012-04-04 12:44
See also: http://stackoverflow.com/questions/7657115/how-to-convert-mdb-to-sqlite-database-in-androi - Fionnuala 2012-04-04 12:50


1

If you can find an application (libreoffice?) or language with bindings/reader to access or if you can convert the access "db" into something sane, it shouldn't be too difficult to go to sqlite from there. The code you need will probably be specific to your particular database and not a universal Access->sqlite converter.

Actually, you might see if access could directly talk to sqlite over ODBC. Longshot, but that might be closest to a full answer to your question.

You could see these, for starters:

2012-04-04 09:24
by XTL
Ads