runInsert method

  1. @override
Future<int> runInsert(
  1. String statement,
  2. List<Object?> args
)
override

Runs an insert statement with the given variables. Returns the row id or the auto_increment id of the inserted row.

Implementation

@override
Future<int> runInsert(String statement, List<Object?> args) =>
    executor.runInsert(statement, args);