@persql/sdk 0.1.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/{chunk-CDNTQOBK.js → chunk-YZEQFTCX.js} +414 -159
- package/dist/chunk-YZEQFTCX.js.map +1 -0
- package/dist/cli.cjs +411 -156
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +1 -1
- package/dist/index.cjs +417 -162
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +318 -128
- package/dist/index.d.ts +318 -128
- package/dist/index.js +7 -7
- package/package.json +1 -1
- package/dist/chunk-CDNTQOBK.js.map +0 -1
package/README.md
CHANGED
|
@@ -107,9 +107,9 @@ const { data } = await db.query("SELECT * FROM customers");
|
|
|
107
107
|
|
|
108
108
|
`query / batch / transaction / tables / explain / schema` route
|
|
109
109
|
through `better-sqlite3` (lazy-loaded — never required for live use).
|
|
110
|
-
`
|
|
111
|
-
|
|
112
|
-
|
|
110
|
+
`subscribe` throws — it has no local equivalent. The same
|
|
111
|
+
`db.driver()` works in local mode, so a Drizzle-based data layer
|
|
112
|
+
needs zero changes between tests and prod.
|
|
113
113
|
|
|
114
114
|
Call `persql.close()` to release the file handle when done.
|
|
115
115
|
|