Reputation: 544
I have a app that has a database... So through DDMS i exported its database as .db
so i want to know how do I open it to see its tables/values ? Is there a specific program that opens it ?
Upvotes: 0
Views: 221
Reputation: 4575
Also, if you have SSH-access to your rooted android device, you can use sqlite3 program from console and perform any SQL queries you want. By such way you do not need to copy database from device, and can debug what you need in real time.
Upvotes: 0
Reputation: 3047
You can use any SQLite software, for example, SQLite Database Browser or SQLiteSpy. If you use FireFox, you can use SQLite Manager.
Upvotes: 2