execute abstract method
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]);