Execute a command (INSERT, UPDATE, DELETE)
int execute(String sql, List<dynamic> args) { _database.execute(sql, args); // Get the number of rows affected return _database.updatedRows; }