execute method

int execute(
  1. String sql,
  2. List args
)

Execute a command (INSERT, UPDATE, DELETE)

Implementation

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