I use this method to delete a bank record
public boolean delete(String id) {
String where = "id = ?";
String[] whereArgs = new String[] {id};
int retorno = this.banco.delete("pessoa", where, whereArgs);
if(retorno != 0)
return true;
else
return false;
}
Now I need to create one that erases all records, does anyone know?