I have created a database for my application. Now I want to make sure that all the attributes are correct and rows are getting filled properly. Database seems to be in /data folder but this folder seems to be empty. When I try to use sqlite3 to access it (from the command line using adb shell ) I get a not found error. The android phone that I am playing around is a Google Nexus S. Any ideas on how to export it or test that the database is build correctly and used as intended?
I have created a database for my application. Now I want to make sure
Share
In the DDMS perspective use the file explorer while an emulator is running. You can explore the folders there. You will find your database in /data/data/your-package-name/databases
You can find details about DDMS here