runSQL method

  1. @override
Future<String?> runSQL(
  1. String sqlInline
)
override

Runs a SQL in the DB. The SQL shouldn't have multiple lines.

Implementation

@override
Future<String?> runSQL(String sqlInline) async {
  var sqlAdapter = _requireAdapter();
  sqlAdapter.executeRawSQL(sqlInline);
  return '';
}