drift_sqflite 2.0.1 copy "drift_sqflite: ^2.0.1" to clipboard
drift_sqflite: ^2.0.1 copied to clipboard

A Flutter-only implementation of a drift database, based on the `sqflite` package.

drift_sqflite #

drift_sqflite contains a drift database implementation based on the sqflite package.

For more information on drift, see its documentation.

Usage #

The SqfliteQueryExecutor class can be passed to the constructor of your drift database class to make it use sqflite.

@DriftDatabase(tables: [Todos, Categories])
class MyDatabase extends _$MyDatabase {
  // we tell the database where to store the data with this constructor
  MyDatabase() : super(_openConnection());

  // you should bump this number whenever you change or add a table definition.
  // Migrations are covered later in the documentation.
  @override
  int get schemaVersion => 1;
}

QueryExecutor _openConnection() {
  return SqfliteQueryExecutor.inDatabaseFolder(path: 'db.sqlite');
}

Note: The drift_sqflite package is an alternative to the standard approach suggested in the drift documentation (which consists of a NativeDatabase instead of SqfliteQueryExecutor). Using this package is primarily recommended when migrating existing projects off moor_flutter. When using a SqfliteQueryExecutor, you don't need to depend on sqlite3_flutter_libs like the drift documentation suggests for the standard approach.

Migrating from moor_flutter #

The easiest way to migrate from moor_flutter to drift_sqflite is to use the automatic migration tool.

19
likes
140
pub points
92%
popularity

Publisher

verified publishersimonbinder.eu

A Flutter-only implementation of a drift database, based on the `sqflite` package.

Homepage
Repository (GitHub)
View/report issues
Contributing

Documentation

API reference

License

MIT (LICENSE)

Dependencies

drift, flutter, path, sqflite

More

Packages that depend on drift_sqflite