executeAndTrigger abstract method

Future<void> executeAndTrigger(
  1. Iterable<String> tables,
  2. String sql, [
  3. List<Object?>? arguments
])

See execute

Execute an SQL query with no return value, and notify.

A notification to queries for tables will be sent after the statement is executed.

Implementation

Future<void> executeAndTrigger(
  Iterable<String> tables,
  String sql, [
  List<Object?>? arguments,
]);