direct-sqlite
direct-sqlite copied to clipboard
https://www.sqlite.org/c3ref/busy_timeout.html [in python](https://github.com/python/cpython/blob/3.12/Modules/_sqlite/connection.c#L264)
Hey, I wanted to use SQLite with ICU enabled, so here's a patch to enable it. Perhaps useful to add to Direct-SQLite-proper, too. ```patch diff --git a/direct-sqlite.cabal b/direct-sqlite.cabal index deb5d30..67bcc4e...
The C api defines functions `sqlite3_status` and `sqlite3_status64` that provide access to a number of global memory statistics. It would be useful to have proper Haskell bindings to these functions.
According to [the official SQLite documentation](https://www.sqlite.org/threadsafe.html), one needs to pass the `-DSQLITE_THREADSAFE=2` flag, when compiling SQLite, to run it in multi-thread mode. The multi-thread mode improves performance slightly, when each...
Update docs to match reality.