Simon Binder

Results 747 comments of Simon Binder

@srawlins I gave this a go on the `element2` branch, but I think it's too early for client packages to make the migration. I got the >700 usages down to...

Thanks for the heads-up! At the very least I want to rebase the `element2` branch ontop of `develop`. I'll also try to get an element2 release to pub.dev soon. I...

I've published a pre-release update of `drift_dev` with support for element2 APIs and the `package:build` pre-releases. @srawlins I'm not sure who I should ping for this, but I assume you're...

Well, what's the specific entry? It's pretty weird that the database is only locked with the one particular row though. Also, are you sure it's related to the entry and...

Do you have multiple concurrent writers in your real application as well? WAL only allows concurrent reads and a single writer. Two concurrent writers will still cause lock errors with...

Are you using long-running transactions anywhere? If you have a way to reproduce this, it might be helpful to enable statement logging across all isolates using the database to see...

Sorry for the slow response here, I think an issue is the right channel to report this though. Just for my own understanding, is the slowdown observed with your JNI...

I can reproduce the issue, but I'm not sure what to do about it? Is there a way to extract a reason from Virustotal? There's almost nothing in that file,...

Version 3.x of this package will not require a separate `sqlcipher_flutter_libs_plugin.dll` anymore, so that can perhaps fix the issue. I'll close this for now, but feel free to open another...

You can use `driftDatabase(native: DriftNativeOptions(databasePath: () async => ...))` to migrate to `drift_flutter` while otherwise keeping your existing database path. I will update the documentation to mention how to migrate...