I just wanted to say thank you for this package. In my opinion, it's exactly what 95% of Flutter devs need for SQLite, but they just don't know it yet.
As a Flutter dev, I want:
- Consistent, cross-platform SQLite that's easy to use.
- No heavy ORM on top of it. Usually the ORM proves to be more complex to learn than SQL itself (custom class definition and query syntax, using
build_runner to render part files, etc.).
- Built-in management of threading so I can just use it and not worry about it blocking the UI.
You've done exactly that, so thank you!
A couple other thoughts:
- SQFlite is super-popular and is well done, but not having Windows support without more packages and lots of shenanigans is a pain. Also, it relies on platform-specific packages (i.e. FMDB on iOS) underneath, so it can create a ton of warnings at compile time.
- SQLite 3 is excellent, but why would anyone want to roll their own thread management? No thanks.
I wonder if you should talk to the author of SQLite3 and just merge all your isolate management goodness into it so that more people can know about it.
I'll post my thoughts on Flutter's Reddit channel as well in hopes of spreading the word about your package.
Thanks again!
I just wanted to say thank you for this package. In my opinion, it's exactly what 95% of Flutter devs need for SQLite, but they just don't know it yet.
As a Flutter dev, I want:
build_runnerto renderpartfiles, etc.).You've done exactly that, so thank you!
A couple other thoughts:
I wonder if you should talk to the author of SQLite3 and just merge all your isolate management goodness into it so that more people can know about it.
I'll post my thoughts on Flutter's Reddit channel as well in hopes of spreading the word about your package.
Thanks again!