execute abstract method

Future? execute(
  1. String sql, {
  2. List<String>? tables,
  3. List<Object?> params = const [],
  4. String? dbName,
})

Executes an SQL Query with no return value params - an optional list of parameters to pass to the query tables - an optional list of tables affected by the query

Implementation

Future<dynamic>? execute(String sql,
    {List<String>? tables, List<Object?> params = const [], String? dbName});