Dj
Dj
The custom-built SQLite works perfectly fine in QEMU Aarch64. This must be a problem with Deno FFI on Aarch64 because even a simple `sqlite3_initialize` call doesn't work via FFI (but...
Oh that's great! I think we should update sqlite3 version in the repo now and publish new build for linux arm64. I'll try doing it over the weekend.
Interesting, it is still seg faulting for me on ArchLinux aarch64 VM.
Got Deno for Linux aarch64 from the same place. SQLite 3.42.0 was built in CI using cross-compilation. Maybe that could be causing some issues. I'll try compiling it on the...
@xyzshantaram did that work? You can try calling sqlite3_version function from both system sqlite and the sqlite aarch64 linux binary from GitHub releases in this repo, using Deno FFI.
Have you tried the int64 option? https://github.com/denodrivers/sqlite3/blob/main/doc.md#options
Previously it was slow to return bigints from Deno FFI but now it’s fast. But I’m still not sure what to do in this case: SQLite3 tells us there is...
I've added better documentation for this behavior and also now allow changing int64 at statement level. Closing this issue as completed for now.
Hi, I don't think I got around publishing this library, it was mainly a proof of concept. I could polish things up and publish it. Though, since then I have...
That would be interesting, I believe it would be more complicated than that due to how canvaskit loads the wasm. If there was a way to import as a WebAssembly...