Reputation: 14711
Im developing an android app and Im using a local SQLite database for testing purposes. How do I know what are the contents of that DB? How do I view the records?
For example I've just inserted a new user. How do I know they are there?
Upvotes: 0
Views: 281
Reputation: 3735
If you are using Eclipe, you can open DDMS perspective while your emulator is on and later:
File Explorer
-> data
-> data
-> app package name
-> databases
Your app database should be inide databases
folder. Select your database and push or pull the database with the two buttons on the upper tab. You can open your database file with SQLite Manager Firefox extension to check the records in your database.
Upvotes: 3