execute method
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));
}