🍜

[JavaScript]Node.jsとDenoとBunでSQLite書き比べ(Pythonもあるよ)

に公開
2

ないようがふるいのでけしました。あたらしいきじをみてください。

https://zenn.dev/tkithrta/articles/b6606f0c8f0dc1

どうしてもみたいひとはこちら。

https://zenn.dev/link/comments/859a0c00751c87

Discussion

フシハラフシハラ

deno-sqlite と deno-sqlite3 は名前の揺らぎがあって注意

これと

https://deno.land/x/sqlite@v3.8
https://github.com/dyedgreen/deno-sqlite

これは違う。

https://deno.land/x/sqlite3@0.12.0
https://github.com/denodrivers/sqlite3
https://jsr.io/@db/sqlite

後者、deno.landやgithubではsqlite3なのにjsrではsqliteになってる。

また後者、
またWindowsの場合はsqlite3.dllを別途入れる必要があります。と記載あるけど
import { Database } from "jsr:@db/sqlite@0.11";で確認したら runしたら自動的にダウンロードしてくれたから直接的にdllを意識する必要は無さそう。