better-sqlite3-multiple-ciphers 12.8.0 → 12.9.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 +4 -4
- package/deps/sqlite3/sqlite3.c +7631 -4305
- package/deps/sqlite3/sqlite3.h +474 -106
- package/deps/sqlite3/sqlite3ext.h +10 -1
- package/deps/update-sqlite3mc.sh +2 -2
- package/package.json +1 -1
|
@@ -371,7 +371,11 @@ struct sqlite3_api_routines {
|
|
|
371
371
|
/* Version 3.51.0 and later */
|
|
372
372
|
int (*set_errmsg)(sqlite3*,int,const char*);
|
|
373
373
|
int (*db_status64)(sqlite3*,int,sqlite3_int64*,sqlite3_int64*,int);
|
|
374
|
-
|
|
374
|
+
/* Version 3.52.0 and later */
|
|
375
|
+
void (*str_truncate)(sqlite3_str*,int);
|
|
376
|
+
void (*str_free)(sqlite3_str*);
|
|
377
|
+
int (*carray_bind)(sqlite3_stmt*,int,void*,int,int,void(*)(void*));
|
|
378
|
+
int (*carray_bind_v2)(sqlite3_stmt*,int,void*,int,int,void(*)(void*),void*);
|
|
375
379
|
};
|
|
376
380
|
|
|
377
381
|
/*
|
|
@@ -710,6 +714,11 @@ typedef int (*sqlite3_loadext_entry)(
|
|
|
710
714
|
/* Version 3.51.0 and later */
|
|
711
715
|
#define sqlite3_set_errmsg sqlite3_api->set_errmsg
|
|
712
716
|
#define sqlite3_db_status64 sqlite3_api->db_status64
|
|
717
|
+
/* Version 3.52.0 and later */
|
|
718
|
+
#define sqlite3_str_truncate sqlite3_api->str_truncate
|
|
719
|
+
#define sqlite3_str_free sqlite3_api->str_free
|
|
720
|
+
#define sqlite3_carray_bind sqlite3_api->carray_bind
|
|
721
|
+
#define sqlite3_carray_bind_v2 sqlite3_api->carray_bind_v2
|
|
713
722
|
#endif /* !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION) */
|
|
714
723
|
|
|
715
724
|
#if !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION)
|
package/deps/update-sqlite3mc.sh
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "better-sqlite3-multiple-ciphers",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.9.0",
|
|
4
4
|
"description": "better-sqlite3 with multiple-cipher encryption support",
|
|
5
5
|
"homepage": "https://github.com/m4heshd/better-sqlite3-multiple-ciphers",
|
|
6
6
|
"author": "Mahesh Bandara Wijerathna (m4heshd) <m4heshd@gmail.com>",
|