DEV Community

Cover image for Code faster with Flutter Quickey ORM Package
Kenzy Limon
Kenzy Limon

Posted on

Code faster with Flutter Quickey ORM Package

Image description

QuickeyDB is a fast Flutter ORM inspired by ActiveRecord and built on top of Sqflite. Made purely to be runtime only, eliminating the need to use code generators.

QuickeyDB (ORM) uses a coding technique with function descriptors connected to a relational database.

Apart from the data access technique, QuickeyDB can benefit a developer in many ways including:

  • Requires Simplified development and Maintenance: this is because ORMs automate the object-to-table and table-to-object conversion.

  • QuickeyDB allows data indexing improving database performance

  • You get to write better queries in a Dart, Most developers are not the best at writing SQL statements.

  • QuickeyDB has incredibly lower code lines compared to embedded SQL Queries.

  • Database Migration and Database versioning.

  • Database Transaction and Batch Entries

  • Memory database storage for test cases and situations that don't require data to persist.

  • Relation.

Checkout example app

Image description

Conclusion

You can find the complete documentation about QuickeyDB at Here and really get in-depth knowledge of how cool QuickeyDB is.

Want to keep in touch online? Medium | Twitter | Instagram | Behance

Top comments (0)