Simon Binder
Simon Binder
Wait, we already use `SQLITE_OMIT_DEPRECATED`, so my understanding is that the `temp_store_directory` pragma shouldn't be available in the first place. Are you using `sqlite3_flutter_libs` to include `libsqlite3.so`?
Yeah, I think the problem is that after the app was put to background the database wasn't closed properly, so it's locked when re-opening. I think sqflite has some builtin...
> i had't check, each opening app cause of i get this error. after delete database and tables this problem solved Ouch, that sounds bad and definitely shouldn't happen. It's...
I see the advantage of this, and we can do this without a breaking change which is nice, but I'm a bit unsure about what it means to "extend" a...
[Question] Multi entity insert (Insert object and contained object in different tables in one query)
No, moor does not provide apis to insert multiple entities at once. There have been similar issues requesting moor to behave more like an ORM (https://github.com/simolus3/moor/issues/114 for instance). In general...
Thanks for the report and for linking the original issue. It strongly sounds like this is due to multiple `VmDatabase`'s being active at the same time. However, I'm not yet...
> If there is a 2nd instance then I don't know where I think I see the problem now. The Dart object gets destroyed of course, but we don't have...
> So you think the native instance ist still around while the Dart VM restarted Yes, exactly. We create a database connection by calling `sqlite3_open_v2` and keep a reference to...
I found a way to do this in pure Dart. We can open a named in-memory database to keep track of open database connections! That database would have the same...
Great! And thanks for pointing me towards your initial workaround which I used for inspiration. Did you see the problem this caused on iOS? It might be related to sqlite...