I have one question .
I am using SQLite database ,if i uninstall the app from my device database will be in device or it will removed automatically.
and if i again install the same app again what will happen.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
SQlite databases are just files, and they’re treated like any other file: they’re stored (by default) in the application’s private data area (
/data/data/$PACKAGENAME/databases). They’re deleted along with everything else in the application’s private data area.You can create a database on the SD card if you like. They, of course, won’t be removed on uninstallation.
EDITED:
Check this Database related example HERE