サンプル
drizzle-orm 0.45.2: Run drizzle-orm against an in-memory SQLite with no native module and no server, using node:sqlite as the driver
検証済みサンプル — npm drizzle-orm 0.45.2: Run drizzle-orm against an in-memory SQLite with no native module and no server, using node:sqlite as the driver. node 22…
sha256:b2121ae40b126706d7f37eb42fe29016cbed772ae0a32001ee2bbaeff49ffcd7
このネットワークが提供するのは一つだけです。ビルドされるサンプル。サンドボックスで実行し、署名済みの受領証を保管します。等級はつけず、何も保証しません — 同じコードがあなたの環境でビルドされるかは測定していません。
合格した契約受領証を提出した異なる署名鍵の数です。1 なら作者だけ、2 以上なら他の誰かもビルドしています。鍵は自己生成で背後に登録された身元がないため、数えているのは人ではなく鍵です。
MIT-0
実行証拠
宣言された環境と署名済みの実行を分けてあります。このサンプルが何をどこで実行したかをそのまま確認できます。
- 証拠の基準
- 署名済みコントラクト合格
- 検証レシート
- 2
- ビルドした署名鍵
- 2
宣言された環境
node 22 linux x64 node 22 javascript npm
検証実行環境
| 環境 | コントラクト | ステージ | 実行日 |
|---|---|---|---|
| node 22 · linux alpine/x64 · docker ed25519:a2ec939a4c60e243 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · npm@1 |
2026-08-14 |
| node 22 · linux alpine/x64 · docker ed25519:d91480838ac982c9 | PASS | compile:SKIPPED · contract:PASS · load:PASS · resolve:PASS CONTAINER_RUN · npm@1 |
2026-08-18 |
ケース
HOW- ゴール
- Run drizzle-orm against an in-memory SQLite with no native module and no server, using node:sqlite as the driver
- パッケージ
- シンボル
-
- sqliteTable
- drizzle-orm/sqlite-proxy
- drizzle-orm/sqlite-proxy/migrator
- node:sqlite.DatabaseSync
- StatementSync.setReturnArrays
- sql
- eq
- DrizzleQueryError
- 環境
- node 22
- 作成日
- 2026-08-14T12:07:43Z
コントラクト
- apply a hand-written drizzle migration folder to an in-memory node:sqlite database through sqlite-proxy, offline
- assert drizzle-orm's exports map refuses ./package.json, so its own version has to be read off disk rather than required
- assert drizzle-orm 0.45.2 publishes no node-sqlite entry point, so the driver is sqlite-proxy with node:sqlite behind it
- assert the first migrate hands the callback the two DDL statements split on --> statement-breakpoint plus one __drizzle_migrations insert, and a second migrate hands it nothing
- assert the migrator creates and reads __drizzle_migrations through the driver rather than through the callback, and that its SELECT arrives as method values
- assert .returning() gives back the stored row, including the id AUTOINCREMENT assigned and the login_count the insert never named
- assert a select returns rows keyed by the schema's JS names, with the values untouched: mapFromDriverValue on a plain integer column is the identity function, so the JS number came from node:sqlite
- assert .where(eq(...)) filters in SQL with the value bound as a parameter, and .get() on a miss is undefined rather than an empty row
- assert omitting a notNull column, a TypeScript error at build time, is also a runtime NOT NULL constraint failure
- assert drizzle writes a literal null for an omitted column instead of leaving it out, so the column's SQL DEFAULT never applies and only a schema-side .default() helps
- assert a unique violation arrives as DrizzleQueryError whose own message is the failed statement and its parameters and not the SQLite one, with the SQLite message and code on .cause
- assert the extended result codes separate SQLITE_CONSTRAINT_UNIQUE from SQLITE_CONSTRAINT_NOTNULL without parsing English
- assert a quote-carrying value interpolated into sql`` is bound as a parameter, leaving no quote in the statement, so the injected tautology matches no rows
- assert the same value concatenated with sql.raw does fire the tautology and returns every row, so the escaping is what prevented it
- assert a value carrying a statement terminator passed to eq() is one bound parameter and the table it names is still there afterwards
- assert a proxy driver that returns node:sqlite's default object rows silently yields rows with every column undefined, which is why setReturnArrays(true) is required
ファイル
- csx.json
- drizzle/0000_init.sql
- drizzle/meta/_journal.json
- package-lock.json
- package.json
- src/db.mjs
- test/contract.mjs