Reputation: 81
I want to use an SQLite database in Android. I have few questions:
Upvotes: 8
Views: 435
Reputation: 68167
Upvotes: 5
Reputation: 245
Ok.. I will try and answer most of your questions.. 1) Is the Data secure - Android stores app specific data in its app specific location and access is provided to only that application. So, we can say, its pretty secure, because no other app can read your app's data, unless access is provided to 2 applications having a same package name.
2) Location where db is stored - its under data\data\databases\packagename*.db 3) The data will remain on phone, unless the app is uninstalled / android crashes, in which case you would have to clear the phone cache and app cache, thus removing everything from android's inertnal phone memory.
Upvotes: 1