I’m starting out with a small app using programmatically created sqlite db.
Is there a way to inspect that db when the app is running on emulator?
I’m starting out with a small app using programmatically created sqlite db. Is there
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.
You can download the database file from the device to your PC and then use any SQLite browser / tool to inspect the database.
Either via the
adbcommandline tool from the Android SDK toolsor via the device browser (File Explorer) in Eclipse in the DDMS perpective (maybe that exists in IntelliJ too, Idk)
or the new Android SDK tools provide a neat standalone version of that DDMS perspective & the file explorer via the new Device Monitor tool (
android-sdk/tools/monitor.bat)