executeWith abstract method

void executeWith(
  1. StatementParameters parameters
)

Executes this statement, ignoring result rows if there are any.

If the parameters list does not match the amount of parameters in the original SQL statement (parameterCount), an ArgumentError will be thrown. See StatementParameters for a list of types supported by this library. If sqlite3 reports an error while running this statement, a SqliteException will be thrown.

Implementation

void executeWith(StatementParameters parameters);