@rocicorp/zero-sqlite3 1.0.7 → 1.0.9
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/deps/defines.gypi +1 -0
- package/deps/download.sh +2 -1
- package/deps/sqlite3/shell.c +1171 -512
- package/deps/sqlite3/sqlite3.c +6515 -4034
- package/deps/sqlite3/sqlite3.h +272 -73
- package/deps/sqlite3/sqlite3ext.h +4 -0
- package/lib/database.js +12 -0
- package/lib/index.d.ts +30 -0
- package/package.json +6 -1
- package/src/better_sqlite3.cpp +64 -2
- package/src/better_sqlite3.hpp +3 -1
package/deps/defines.gypi
CHANGED
package/deps/download.sh
CHANGED
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
# 4. node-gyp links the two resulting binaries to generate better_sqlite3.node.
|
|
19
19
|
# ===
|
|
20
20
|
|
|
21
|
-
CHECKIN="
|
|
21
|
+
CHECKIN="54b88880"
|
|
22
22
|
|
|
23
23
|
# Defines below are sorted alphabetically
|
|
24
24
|
DEFINES="
|
|
@@ -47,6 +47,7 @@ SQLITE_ENABLE_JSON1
|
|
|
47
47
|
SQLITE_ENABLE_MATH_FUNCTIONS
|
|
48
48
|
SQLITE_ENABLE_RTREE
|
|
49
49
|
SQLITE_ENABLE_STAT4
|
|
50
|
+
SQLITE_ENABLE_STMT_SCANSTATUS
|
|
50
51
|
SQLITE_ENABLE_UPDATE_DELETE_LIMIT
|
|
51
52
|
SQLITE_LIKE_DOESNT_MATCH_BLOBS
|
|
52
53
|
SQLITE_OMIT_DEPRECATED
|