tags:

views:

66

answers:

2

Hi all,

I am doing database application in android.i need to know where the data base is store,whether in Emulator or in our application.

Thanks in advance...

+2  A: 

Probably a duplicate of this question.

codelark
A: 

The databases are stored as SQLite files in /data/data/PACKAGE/databases/DATABASEFILE where:

You can see (copy from/to filesystem) the database file in the emulator selecting DDMS perspective, in the File Explorer tab.

caligari
How to delete the database file?...
Travis
See http://stackoverflow.com/questions/3916740/how-to-upgrade-sqlite-database-file/3917336#3917336 and http://stackoverflow.com/questions/2270927/delete-a-file-from-android-application/2272533#2272533
caligari