Android - Where is SQLite Database stored [duplicate] Android - Where is SQLite Database stored [duplicate] database database

Android - Where is SQLite Database stored [duplicate]


Open the DDMS perspective Window: (window->open perspective->other->DDMS) It should open in a new tab.

Go to DDMS -> file explorer -> data -> data -> see your package name -> databases -> here your database file. (In the upper right, choose "Pull file" from device.) Export it and open through an Sqlite database connector.

You will see your updated data. Before taking these steps make sure that you have run your application first.


Here you can find your database, but only on emulator

enter image description here


usually the database of app resides at the below folder

/data/data/[packagename]/databases

But have never used phonegap, so this might be different. You could check at above location.