better-sqlite3-multiple-ciphers 9.2.2 → 9.4.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 +8 -6
- package/deps/setup.ps1 +1 -1
- package/deps/sqlite3/sqlite3.c +5583 -2565
- package/deps/sqlite3/sqlite3.h +76 -21
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,10 +17,10 @@ The fastest and simplest library for SQLite3 in Node.js. This particular fork su
|
|
|
17
17
|
## Current versions
|
|
18
18
|
|
|
19
19
|
- ### Stable
|
|
20
|
-
- **better-sqlite3-multiple-ciphers** - [`9.
|
|
21
|
-
- **better-sqlite3** - [`9.
|
|
22
|
-
- **SQLite** - [`3.
|
|
23
|
-
- **SQLite3 Multiple Ciphers** - [`1.8.
|
|
20
|
+
- **better-sqlite3-multiple-ciphers** - [`9.4.0`](https://github.com/m4heshd/better-sqlite3-multiple-ciphers/releases/tag/v9.4.0)
|
|
21
|
+
- **better-sqlite3** - [`9.4.0`](https://github.com/JoshuaWise/better-sqlite3/releases/tag/v9.4.0)
|
|
22
|
+
- **SQLite** - [`3.45.1`](https://www.sqlite.org/releaselog/3_45_1.html)
|
|
23
|
+
- **SQLite3 Multiple Ciphers** - [`1.8.3`](https://github.com/utelle/SQLite3MultipleCiphers/releases/tag/v1.8.3)
|
|
24
24
|
|
|
25
25
|
- ### Beta
|
|
26
26
|
- **better-sqlite3-multiple-ciphers** - [`v9.1.2-beta.0`](https://github.com/m4heshd/better-sqlite3-multiple-ciphers/releases/tag/v9.1.2-beta.0)
|
|
@@ -40,7 +40,9 @@ Also head over to [SQLite3MultipleCiphers](https://github.com/utelle/SQLite3Mult
|
|
|
40
40
|
|
|
41
41
|
You can also support me (the maintainer of this fork) by buying me a coffee. 😊
|
|
42
42
|
|
|
43
|
-
[](https://ko-fi.
|
|
43
|
+
[](https://ko-fi.variatix.net/)
|
|
44
|
+
|
|
45
|
+
[](https://paypal.variatix.net/)
|
|
44
46
|
|
|
45
47
|
## How other libraries compare
|
|
46
48
|
|
|
@@ -94,7 +96,7 @@ db.pragma('journal_mode = WAL');
|
|
|
94
96
|
|
|
95
97
|
A database can be encrypted and decrypted simply using `key` and `rekey` `PRAGMA` statements.
|
|
96
98
|
|
|
97
|
-
**Running this will encrypt the database using the default cipher:**
|
|
99
|
+
**Running this will encrypt the database using the default cipher (sqleet):**
|
|
98
100
|
|
|
99
101
|
```js
|
|
100
102
|
const db = require('better-sqlite3-multiple-ciphers')('foobar.db', options);
|