mirror of https://github.com/AMT-Cheif/drift.git
9 lines
304 B
Dart
9 lines
304 B
Dart
// A full cross-platform example is available here: https://github.com/simolus3/drift/tree/develop/examples/app
|
|
|
|
import 'package:drift/drift.dart';
|
|
import 'package:drift_sqflite/drift_sqflite.dart';
|
|
|
|
QueryExecutor executorWithSqflite() {
|
|
return SqfliteQueryExecutor.inDatabaseFolder(path: 'app.db');
|
|
}
|