execute abstract method

Future<void> execute(
  1. String sql,
  2. [List<Object?>? arguments]
)

Execute an SQL query with no return value.

  await db.execute(
  'CREATE TABLE Test (id INTEGER PRIMARY KEY, name TEXT, value INTEGER, num REAL)');

Implementation

Future<void> execute(String sql, [List<Object?>? arguments]);