0

Possible Duplicate:
Where does Android emulator store SQLite database?

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...

Community
  • 1
  • 1
Kakey
  • 3,936
  • 5
  • 29
  • 45

1 Answers1

0

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
  • 2,110
  • 20
  • 25
  • How to delete the database file?... – Kakey Oct 14 '10 at 10:42
  • 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 Oct 14 '10 at 14:41