-4

I am implementing a SQlite database into my Android application. I was wondering, if I kill the process of the app on my phone, will the information in the database still be there when I load it up the next time? Or does the database get deleted when you close the app?

1 Answers1

1

The database is persistent; it will stay on device until it is explicitly deleted.

This question has already been asked and answered here: How can I make Android application data persistent?

I suggest that you also look at this resource for future questions about SQLite databases: http://developer.android.com/training/basics/data-storage/databases.html

Community
  • 1
  • 1
Adam
  • 472
  • 1
  • 7
  • 14