android - Are deleted sms are still in content://sms? -


I am working on a project that uses SMS and call_logs. I want to know that deleted SMS (call_logs) are still in content: // SMS database?

Thank you.

Why should you be there if you want to delete them?

SMS and call logs are stored in the database and you need to use the content provider to modify them. The content provider will receive your request and execute a query on the database. So when you delete an SMS, a deleted query will run on the database and the data will be permanently deleted!


Comments

Popular posts from this blog

sqlite3 - UPDATE a table from the SELECT of another one -

c# - Showing a SelectedItem's Property -

javascript - Render HTML after each iteration in loop -