execute method

Future<void> execute(
  1. String sql, [
  2. List<Object?> parameters = const []
])

Executes the sql statement with the provided parameters and ignores the result.

Implementation

Future<void> execute(String sql,
    [List<Object?> parameters = const []]) async {
  await _sendCommand("execute", body: _StatementParams(sql, parameters));
}