baTimá
baTimá

Reputation: 544

How to open database to see values when exported from DDMS?

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

Answers (2)

Prizoff
Prizoff

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

UgglyNoodle
UgglyNoodle

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

Related Questions