execute method
Execute the delete and return the result
Implementation
int execute() {
final sql = 'DELETE FROM $_table $_whereClause';
return _db.execute(sql, _whereArgs);
}
Execute the delete and return the result
int execute() {
final sql = 'DELETE FROM $_table $_whereClause';
return _db.execute(sql, _whereArgs);
}