deno
deno copied to clipboard
Tracking issue for `node:sqlite`
Related https://github.com/denoland/deno/issues/11657
Tracking issue for implementing the node:sqlite API.
Currently experimental - https://nodejs.org/api/sqlite.html
Just curious if there's been progress on this? Haven't dug into the 2.0 additions yet.
Just curious if there's been progress on this? Haven't dug into the 2.0 additions yet.
I believe they said in the 2.0 live stream that npm:sqlite has been completed but will only be released in Deno if nodejs takes it out of the experimental phase.
Yes, it will be added once it's stable in Node.js
I'm a bit surprised that in this PR https://github.com/denoland/deno/pull/27308 the node:sqlite implementation is barely faster than Node's. I was expecting significant performance improvements because of Deno's FFI.
@littledivy do you know if sqlite will be under Deno namespace or by node:sqlite import only?
node:sqlite is currently import only. I don't think there are any plans yet to have a Deno specific API
If imports are an issue you should be able to get it with process.getBuiltinModule("node:sqlite") tho
@easrng nice, thanks a lot!