Runs a SQL in the DB. The SQL shouldn't have multiple lines.
@override Future<String?> runSQL(String sqlInline) async { var sqlAdapter = _requireAdapter(); sqlAdapter.executeRawSQL(sqlInline); return ''; }