Go to file
Simon Binder 1ea1c12592
Make the dao generator use the same logic as the main one
2019-06-29 15:43:41 +02:00
docs Improve documentation on migrations, add custom statement 2019-06-20 13:08:34 +02:00
moor Refactor generator: Extract common operations 2019-06-29 15:23:14 +02:00
moor_flutter Migrate tests to companion 2019-06-21 20:29:42 +02:00
moor_generator Make the dao generator use the same logic as the main one 2019-06-29 15:43:41 +02:00
sqlparser Resolve index of sql parameters, documentation 2019-06-29 12:48:09 +02:00
tool Integrate new sql parser library into CI 2019-06-15 23:03:43 +02:00
.gitignore Add .gitignores 2019-02-03 13:54:45 +01:00
.travis.yml Integrate new sql parser library into CI 2019-06-15 23:03:43 +02:00
LICENSE Add MIT license 2019-02-09 21:00:00 +01:00
README.md Write some rudimentary api and docs for the parser 2019-06-22 22:35:34 +02:00
analysis_options.yaml Improve docs a bit, refactor onOpen callback 2019-06-20 11:41:00 +02:00

README.md

Moor

Build Status codecov

Core API Flutter Generator
Generator version Flutter version Generator version

Moor is an easy to use, reactive persistence library for Flutter apps. Define your database tables in pure Dart and enjoy a fluent query API, auto-updating streams and more!

For more information, check out the docs.


The sqlparser directory contains an sql parser and static analyzer, written in pure Dart. At the moment, it can only parse a small subset of sqlite, but most select statements are supported. It hasn't been published yet as it's very experimental.