I would like to make an app where the user clicks a button, and the SQLite database is cleared. Here's what I've tried so far:
db.delete(TABLE_NAME, null, null);
What am I doing wrong?
Your delete() call is correct. Did you get writable database? Here is example of method using delete:
/**
* Remove all users and groups from database.
*/
public void removeAll()
{
// db.delete(String tableName, String whereClause, String[] whereArgs);
// If whereClause is null, it will delete all rows.
SQLiteDatabase db = helper.getWritableDatabase(); // helper is object extends SQLiteOpenHelper
db.delete(DatabaseHelper.TAB_USERS, null, null);
db.delete(DatabaseHelper.TAB_USERS_GROUP, null, null);
}