rawDeleteAndTrigger abstract method

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

See rawDelete

Executes a raw SQL DELETE query.

Returns the number of changes made.

A notification to queries for tables will be sent after the statement is executed and had rows were affected.

Implementation

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