Is there a way for an Android user to browse the SQLite databases on his/her phone and view the data in the databases?
I use the SoftTrace beta program a lot. It’s great but has no way that I can find to download the data it tracks to a PC.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The database for a specific app lives in
/data/data/[packagename]/databasesThe packagename is the package you define in your manifest, for instance
/data/data/org.vimtips.supacount/databases/counts.db.You can view it with
adb shelland typesqlite3 /data/data/org.vimtips.supacount/databases/counts.dbOr you can pull it from the device to look at it with a third party utility, with a command like
adb pull /data/data/org.vimtips.supacount/databases/counts.db ..This assumes you have permission to view the database, which you might not have if you didn’t write the app yourself… but in that case, is it actually a programming question?