←back to thread

Sqlite3 WebAssembly

(sqlite.org)
539 points whatever3 | 1 comments | | HN request time: 0.2s | source
Show context
brandonpollack2 ◴[] No.41851864[source]
I was trying to get this working in a rust ecosystem some time ago but none of the blessed.rs sql (rusqlite, sqlx) wrappers seem to take advantage of it yet and wrapping it yourself is a bit tricky since when I was trying I couldn't figure out a way to to get emscripten wasm code to play nice with wasm32-unknown-unknown without some kind of JS wrapper which then requires implementing the interface those crates expect and exposing it from JS. Once that is done in rust itll be great there too!
replies(4): >>41852082 #>>41852996 #>>41853144 #>>41854660 #
1. azakai ◴[] No.41854660[source]
> I couldn't figure out a way to to get emscripten wasm code to play nice with wasm32-unknown-unknown

There is good news there, some people plan to get Emscripten and Rust to work well together in Wasm:

https://github.com/rustwasm/wasm-bindgen/pull/4014#issuecomm...