All Projects → simolus3 → Moor

simolus3 / Moor

Licence: mit
Moor is an easy to use, reactive, typesafe persistence library for Dart & Flutter

Programming Languages

dart
5743 projects

Projects that are alternatives of or similar to Moor

Lychee
The most complete and powerful data-binding library and persistence infra for Kotlin 1.3, Android & Splitties Views DSL, JavaFX & TornadoFX, JSON, JDBC & SQLite, SharedPreferences.
Stars: ✭ 102 (-90.64%)
Mutual labels:  reactive, sqlite, persistence
Tinano
A typesafe sqlite persistence library for flutter
Stars: ✭ 59 (-94.59%)
Mutual labels:  sqlite, persistence
Nano Sql
Universal database layer for the client, server & mobile devices. It's like Lego for databases.
Stars: ✭ 717 (-34.22%)
Mutual labels:  sqlite, persistence
Kripton
A Java/Kotlin library for Android platform, to manage bean's persistence in SQLite, SharedPreferences, JSON, XML, Properties, Yaml, CBOR.
Stars: ✭ 110 (-89.91%)
Mutual labels:  sqlite, persistence
Grdbcombine
GRDB ❤️ Combine
Stars: ✭ 220 (-79.82%)
Mutual labels:  reactive, sqlite
Rxgrdb
Reactive extensions for SQLite
Stars: ✭ 176 (-83.85%)
Mutual labels:  reactive, sqlite
Qxorm
QxOrm library - C++ Qt ORM (Object Relational Mapping) and ODM (Object Document Mapper) library - Official repository
Stars: ✭ 176 (-83.85%)
Mutual labels:  sqlite, persistence
Requery
requery - modern SQL based query & persistence for Java / Kotlin / Android
Stars: ✭ 3,071 (+181.74%)
Mutual labels:  sqlite, persistence
Watermelondb
🍉 Reactive & asynchronous database for powerful React and React Native apps ⚡️
Stars: ✭ 7,996 (+633.58%)
Mutual labels:  reactive, persistence
Samsara
☸️ Continuous UI
Stars: ✭ 1,051 (-3.58%)
Mutual labels:  reactive
Dbbench
🏋️ dbbench is a simple database benchmarking tool which supports several databases and own scripts
Stars: ✭ 52 (-95.23%)
Mutual labels:  sqlite
Phantom
Schema safe, type-safe, reactive Scala driver for Cassandra/Datastax Enterprise
Stars: ✭ 1,049 (-3.76%)
Mutual labels:  reactive
Instantobjects
Pupular OOP-OPF Library for Delphi (from D2010 to 10.4 Sydney)
Stars: ✭ 50 (-95.41%)
Mutual labels:  persistence
East
node.js database migration tool
Stars: ✭ 53 (-95.14%)
Mutual labels:  sqlite
Easycaching
💥 EasyCaching is an open source caching library that contains basic usages and some advanced usages of caching which can help us to handle caching more easier!
Stars: ✭ 1,047 (-3.94%)
Mutual labels:  sqlite
Rxplaces
A Google Maps Webservice API made simple.
Stars: ✭ 56 (-94.86%)
Mutual labels:  reactive
Pop
A Tasty Treat For All Your Database Needs
Stars: ✭ 1,045 (-4.13%)
Mutual labels:  sqlite
Multibootusb
Create multiboot live Linux on a USB disk...
Stars: ✭ 1,042 (-4.4%)
Mutual labels:  persistence
Esp32 Idf Sqlite3
Sqlite library for esp-idf (esp32) framework
Stars: ✭ 57 (-94.77%)
Mutual labels:  sqlite
Ios Sdk
AppSpector is a debugging service for mobile apps
Stars: ✭ 56 (-94.86%)
Mutual labels:  sqlite

Moor

Build Status codecov Chat on Gitter

Core Flutter Generator
Generator version Flutter version Generator version

Moor is a reactive persistence library for Flutter and Dart, built ontop of sqlite. Moor is

  • Flexible: Moor 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: Moor 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, moor helps you keep your database code simple.
  • 🛡️ Safe: Moor generates typesafe code based on your tables and queries. If you make a mistake in your queries, moor will find it at compile time and provide helpful and descriptive lints.
  • ⚡ Fast: Even though moor lets you write powerful queries, it can keep up with the performance of key-value stores like shared preferences and Hive. Moor 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: Moor 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: Moor is stable and well tested with a wide range of unit and integration tests. It powers production Flutter apps.

With moor, persistence on Flutter is fun!

To start using moor, 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.


Packages in this repo:

  • moor: The main runtime for moor, which provides most apis
  • moor_ffi: New and faster executor for moor, built with dart:ffi.
  • moor_flutter: The standard executor wrapping the sqflite package
  • moor_generator: The compiler for moor tables, databases and daos. It also contains a fully-featured sql ide
  • sqlparser: A sql parser and static analyzer, written in pure Dart. This package can be used without moor to perform analysis on sql statements. It's on pub at sqlparser
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].