I've imported a .db file from my android device and I wish to open it using Libreoffice Base or something similarly basic with a simple GUI.
How do I achieve this?
|
I've imported a .db file from my android device and I wish to open it using Libreoffice Base or something similarly basic with a simple GUI. How do I achieve this? |
||||
|
1.Install SQLite browser, it's in the repositories. 1 2.You also have an extension for Firefox (if you use it) - "SQLite Manager" https://addons.mozilla.org/en-US/firefox/addon/5817/ A list of tools that can manage those files cna be found here 1 - Source |
|||
|
|
|
What type of database file is it? The .db extension is not specific to a certain type of database. Though, coming from Android, I presume it's an sqlite database. I don't know of any simple GUIs to browse an sqlite database file, though. Most SQL related tools are far from simple. |
|||
|
|
|
From the output of the 'file' command in the comment above I can see that it's an sqlite3 database so all you have to do is open it with the sqlite3 command and export it to CSV. Run the following command:
You should see a prompt like this:
If you get an error about "command not found" you'll need to install sqlite3:
Verify that sqlite3 can read the database by listing the tables:
If you get an error at this point the database is probably encrypted or isn't actually SQLite format (the file command can make mistakes sometimes). If it lists the tables in the .db then you're good to go. Just tell sqlite3 the format you want and have it output all the data:
Now you should have a file named books.csv that you can open directly with LibreOffice Calc. Note that sqlite databases can have more than one table. If this is the case you'll want to output each table as its own file. So instead of typing '.exit' above you can continue the process like so:
Finally, to be as thorough as possible, here's a link to the sqlite syntax in case you want to play around with it some more: |
|||
|
|
file file.dband paste here the output and what file is it? Name? – LnxSlck Aug 31 '12 at 13:02