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.
|
feedback
|
|
I think you need to start up your emulator with the command: -wipe-data | |||||||
feedback
|
|
You can run the command:
By typing ls, you will see the databases created and you can remove the one you want with rm
See more here | |||
|
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" | |||
|
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. | |||
|
feedback
|
|
The clear data button will actually delete the database without uninstalling the entire app. | |||
|
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 | |||
|
feedback
|