execute abstract method

Future<int> execute(
  1. String fmtString, {
  2. Map<String, dynamic>? substitutionValues,
  3. int? timeoutInSeconds,
})

Executes a query on this context.

This method sends a SQL string to the database this instance is connected to. Parameters can be provided in fmtString, see query for more details.

This method returns the number of rows affected and no additional information. This method uses the least efficient and less secure command for executing queries in the PostgreSQL protocol; query is preferred for queries that will be executed more than once, will contain user input, or return rows.

Implementation

Future<int> execute(String fmtString,
    {Map<String, dynamic>? substitutionValues, int? timeoutInSeconds});