drift/moor/lib/ffi.dart

13 lines
520 B
Dart
Raw Normal View History

2020-07-08 10:04:57 -07:00
/// Moor implementation using `package:sqlite3/`.
2020-07-28 13:29:26 -07:00
///
/// When using a [VmDatabase], you need to ensure that `sqlite3` is available
/// when running your app. For mobile Flutter apps, you can simply depend on the
/// `sqlite3_flutter_libs` package to ship the latest sqlite3 version with your
/// app.
/// For more information other platforms, see [other engines](https://moor.simonbinder.eu/docs/other-engines/vm/).
2020-07-08 10:04:57 -07:00
library moor.ffi;
2020-07-28 13:29:26 -07:00
import 'package:moor/src/ffi/vm_database.dart';
2020-07-08 10:04:57 -07:00
export 'src/ffi/vm_database.dart';