Mike
Mike
Looks like it’s a collision with the variable named “data”
Yep that works! I'll have some time to experiment further in a few days, but with this it looks like it should be easy enough to write a little helper...
> I was a bit skeptical at first, but I think it can make sense to add something like this to moor I think it would tie in brilliantly with...
After thinking about this some more, a simpler approach might be to open a second read-only connection just for running stream queries - all other operations would still be run...
Finally had a chance to play around with this a bit. Here's a snippet of kinda what I was thinking: ```dart class MyAppDb extends _$MyAppDb { // ... /// A...
> Did you see any performance benefits so far? It seems to solve the issue of navigating to new pages and displaying data while a transaction is in progress, but...
Woo! That looks super straightforward, nicely done! I'm hoping to have some time later this week to play around with it. I was thinking of executing the reads on a...
This was suggested in #918 and I believe it's currently implemented on the develop branch
You could perform the bulk insert in a transaction and use `SELECT last_insert_rowid()` to figure out the rowids. If your primary key is `AUTOINCREMENT` so that rowids aren't re-used, you...
At the moment we’re trying two different approaches. The first approach is to simply not do any joins and resolve relationships as late as possible - often with switchMaps close...