I’m developing an android app using sqllite db and I wanted to know if there way a way to explore this db’s current content.
Share
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.
Download SqlLite Database Browser.
you need to pull a copy of the database from the device or emulator as explained below and work on that copy that can be restored later on.
The database for a specific app lives in /data/data/[packagename]/databases
The packagename is the package you define in your manifest, for instance /data/data/org.example.com/databases/counts.db.
You can view it with adb shell, to see database type sqlite3 /data/data/org.example.com/databases/counts.db
Or 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.example.com/databases/counts.db ..