Future<bool> delete(int id) async { final result = await DatabaseService.driver.delete(tableName, 'id = ?', [id]); return result > 0; }