execute method

Future<int> execute(
  1. String sql, {
  2. List? params,
  3. bool? throwOnError,
})

Implementation

Future<int> execute(String sql,
    {List<dynamic>? params, bool? throwOnError}) async {
  throw UnsupportedError('not implemented: MySqlDb.execute()');
}