Go to file
Simon Binder a604eeddaf
Remove js dep override override in example app
2022-05-29 20:07:41 +02:00
.github Temporarily disable lint check 2022-05-18 11:23:43 +02:00
docs Also describe how to import backups 2022-05-28 13:57:56 +02:00
drift Fix view mapping generation (#1855) 2022-05-24 18:41:48 +02:00
drift_dev New implementation for reference scopes 2022-05-25 23:32:15 +02:00
drift_sqflite Delete example app from drift_sqflite 2022-04-02 19:42:06 +02:00
examples Remove js dep override override in example app 2022-05-29 20:07:41 +02:00
extras Add BigInt support to PgDatabase (#1845) 2022-05-20 10:09:17 +02:00
moor Replace old website and repository links 2022-03-13 15:52:15 +01:00
moor_flutter Add rename notice to `moor_flutter` 2022-03-14 21:30:43 +01:00
moor_generator Replace old website and repository links 2022-03-13 15:52:15 +01:00
sqlparser More tests for new join operators 2022-05-26 23:35:05 +02:00
tool Fix tests 2022-05-12 21:30:37 +02:00
.gitattributes Support includes on the @UseDao annotation as well 2019-07-29 15:19:58 +02:00
.gitignore Merge branch 'documentation-snippets' into develop 2022-03-01 20:43:20 +01:00
CONTRIBUTING.md Fix docs build, retire master branch 2022-02-09 16:08:08 +01:00
LICENSE Add MIT license 2019-02-09 21:00:00 +01:00
README.md Link new cross-platform example in docs 2022-04-08 21:16:46 +02:00
analysis_options.yaml Adapt excludes in analysis options 2021-05-15 10:42:15 +02:00
netlify.toml Prepare moor 4.6.0 release 2021-10-12 14:26:53 +02:00

README.md

Drift

Note: Moor has been renamed to drift

Build Status Chat on Gitter

Proudly Sponsored by Stream 💙


Try the Flutter Chat Tutorial  💬

Core Generator
Main version Generator version

Drift is a reactive persistence library for Flutter and Dart, built on top of sqlite. Drift is

  • Flexible: Drift let's you write queries in both SQL and Dart, providing fluent apis for both languages. You can filter and order results or use joins to run queries on multiple tables. You can even use complex sql features like WITH and WINDOW clauses.
  • 🔥 Feature rich: Drift has builtin support for transactions, schema migrations, complex filters and expressions, batched updates and joins. We even have a builtin IDE for SQL!
  • 📦 Modular: Thanks to builtin support for daos and imports in sql files, drift helps you keep your database code simple.
  • 🛡️ Safe: Drift generates typesafe code based on your tables and queries. If you make a mistake in your queries, drift will find it at compile time and provide helpful and descriptive lints.
  • Fast: Even though drift lets you write powerful queries, it can keep up with the performance of key-value stores like shared preferences and Hive. Drift is the only major persistence library with builtin threading support, allowing you to run database code across isolates with zero additional effort.
  • Reactive: Turn any sql query into an auto-updating stream! This includes complex queries across many tables
  • ⚙️ Cross-Platform support: Drift works on Android, iOS, macOS, Windows, Linux and the web. This template is a Flutter todo app that works on all platforms.
  • 🗡️ Battle tested and production ready: Drift is stable and well tested with a wide range of unit and integration tests. It powers production Flutter apps.

With drift, persistence on Flutter is fun!

To start using drift, read our detailed docs.

If you have any questions, feedback or ideas, feel free to create an issue. If you enjoy this project, I'd appreciate your 🌟 on GitHub.


Important packages in this repo:

  • drift: The main runtime for drift, which provides most apis
  • drift_dev: The compiler for drift tables, databases and daos. It also contains a fully-featured sql ide for the Dart analyzer.
  • sqlparser: A sql parser and static analyzer, written in pure Dart. This package can be used without drift to perform analysis on sql statements. It's on pub at sqlparser