Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to determine where on an android phone an apps SQLite database is stored. I am testings and need to be able to delete it and test the code for creation. On the simulator it is in /data/data/app package name/something.db but I am unable to find it on the actual phone. Does anybody know where it is stored and if it is accessable via DDMS?

Thanks

share|improve this question

2 Answers

up vote 4 down vote accepted

If for whatever reason, you need to access the database on the phone, you must have root access (superuser in other words) on the phone. Then you will need a file explorer that uses root permission to give you access to the system files.

If all the above exists, then you will find the application database in:

/data/data/com.yourpackage.name/databases.

share|improve this answer
I see so it is just a permissions issue, but they are in the same place. Thanks – metalideath Dec 29 '10 at 18:20
what type of questions your are posting . once refer android api and ask questions – Yerram Naveen Oct 9 '12 at 6:36

I'm pretty sure that SQLite app stored somewhere where all Linux app are. Like /usr/bin or /bin. Problem is in fact that you can't delete anything from those directories. To delete them you'd need to have root rights.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.