How say the title I can't find where the sms are stored. I see this similar question but the replies haven't helped me.
I have gosms and I want delete all messages, but if I do this option with gosms the app crashes because are a lot of messages (about 6000).
I found:
./data/data/com.android.providers.telephony/mmssms.db
./data/data/com.jb.gosms/databases/gommssms.db
But are too small files (a few kb) and with text reader I saw that they contained only some queries. Also when I deleted them if I open gosms I still see all messages. So what is the real path of sms?
Edit: After a reboot gosms can't find sms anymore, so my problem is solved ( though probably the real sms are still stored somewhere)
DELETE
command, you might e.g. have missed theCOMMIT
to make yourDELETE
s persistent, and thus your changes might have been "rolled back" instead. – Izzy Oct 25 '13 at 14:45