execute method

Future<int> execute(
  1. String sql, [
  2. dynamic values
])

Queues a command for execution, and when done, returns the number of rows affected by the SQL command.

Implementation

Future<int> execute(String sql, [values]) => conn.execute(sql, values);