@cowasm/sqlite: WebAssembly build of sqlite
Status
This is used as a library dependency when building cpython's sqlite3 module and that all works fine, except for the big problem mentioned below.
Big problem: files don't work
The main problem right now is that sqlite3-wasm only works with an in memory database. So this breaks:
Now try to open it in sqlite3-wasm -- BOOM!
I think issues with mmap are involved. That said, I've disabled mmap and it doesn't help, so I don't yet know what the problem is. Maybe some other stub function returns invalid data that messes something up.
References
There's interesting discussion and links here https://news.ycombinator.com/item?id=33374402