SQLite support on WebAssembly
-
Not so long ago, SQLite added support for WebAssembly platform,
and as presistent storage can be IndexedDB or OPFS ( origin private file system )
https://sqlite.org/wasm/doc/trunk/index.mdAlso emscripten guys working (maybe not anymore) on so called WasmFS - high-performance, fully-multithreaded, WebAssembly-based file system layer for Emscripten that will replace the existing JavaScript version..
https://emscripten.org/docs/api_reference/Filesystem-API.html#new-file-system-wasmfsSO, is there hope for full SQLite support in the future, as current implementation is not usable and mature enough: manipulating with in-memory databases without the possibility of permanent storage does not make much sense.
-
Not so long ago, SQLite added support for WebAssembly platform,
and as presistent storage can be IndexedDB or OPFS ( origin private file system )
https://sqlite.org/wasm/doc/trunk/index.mdAlso emscripten guys working (maybe not anymore) on so called WasmFS - high-performance, fully-multithreaded, WebAssembly-based file system layer for Emscripten that will replace the existing JavaScript version..
https://emscripten.org/docs/api_reference/Filesystem-API.html#new-file-system-wasmfsSO, is there hope for full SQLite support in the future, as current implementation is not usable and mature enough: manipulating with in-memory databases without the possibility of permanent storage does not make much sense.
@Delphi251189 feel free to provide a patch for it.