rawInsertAndTrigger abstract method

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

See rawInsert

Execute a raw SQL INSERT query.

Returns the last inserted record id.

A notification to queries for tables will be sent after the statement is executed and the insert was successful.

Implementation

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