I would like to delete a complete database created by my application.

Do you know any adb command, or android sentence to do it?

Thanks in advance. Best regards. Jose.

link|improve this question

feedback

6 Answers

up vote 7 down vote accepted

I think you need to start up your emulator with the command: -wipe-data

link|improve this answer
2  
FYI, -wipedata will actually delete the entire user data image - developer.android.com/intl/fr/guide/developing/tools/… – Richard Szalay Jan 29 '10 at 10:46
Thanks a lot Matt. Best Regards. Jose – Josemalive Jan 29 '10 at 11:01
feedback

You can run the command:

adb -s emulator-5554 shell (or whatever port you use)
cd /data/data/<packagename>/databases/

By typing ls, you will see the databases created and you can remove the one you want with rm

rm myapp.db

See more here

link|improve this answer
feedback

Also, in Eclipse you can go to "Window -> Show View -> Other... -> Android -> File Explorer"

Then navigate to "data/data//databases"

Select the database file, then click the red minus sign to "delete the selection"

link|improve this answer
Thanks - that did the job for me. – Ready4Android Aug 25 '11 at 23:34
feedback

Perhaps this is too obvious but uninstalling the application via Manage Applications will remove the db, assuming it's in the application's files dir.

link|improve this answer
feedback

The clear data button will actually delete the database without uninstalling the entire app.

link|improve this answer
feedback

go to DDMS->FleExplorer-data/data/packagename/databases/name_of_database

click on the name_of_database and press the red minus!

If you don't have the FileExplorer go to Window->ShowView->FileExplorer

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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