Is there any way to convert a .sqlite
file to XML?
There exist tools that convert from XML to SQLite, but does are there tools that convert the other way, too?
Is there any way to convert a .sqlite
file to XML?
There exist tools that convert from XML to SQLite, but does are there tools that convert the other way, too?
After some experimentation, I found a converter solution using
sqlite3
:start the script with
./script database.sqlite
Creates for each table via
sqlite3 database.sqlite '.table'
atableentry.csv
file.Now to convert csv to xml...