better-sqlite3-multiple-ciphers 8.0.2-beta.1 → 8.1.1-beta.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 +10 -8
- package/deps/setup.ps1 +1 -1
- package/deps/sqlite3/sqlite3.c +3104 -1382
- package/deps/sqlite3/sqlite3.h +167 -86
- package/deps/sqlite3/sqlite3ext.h +4 -0
- package/lib/database.js +2 -0
- package/lib/methods/wrappers.js +10 -0
- package/package.json +3 -2
- package/src/better_sqlite3.cpp +99 -55
- package/src/better_sqlite3.hpp +81 -77
package/README.md
CHANGED
|
@@ -17,17 +17,17 @@ 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** - [`8.0
|
|
21
|
-
- **better-sqlite3** - [`8.0
|
|
22
|
-
- **SQLite** - [`3.40.0`](https://www.sqlite.org/releaselog/3_40_0.html)
|
|
23
|
-
- **SQLite3 Multiple Ciphers** - [`1.5.4`](https://github.com/utelle/SQLite3MultipleCiphers/releases/tag/v1.5.4)
|
|
24
|
-
|
|
25
|
-
- ### Beta
|
|
26
|
-
- **better-sqlite3-multiple-ciphers** - [`8.0.2-beta.1`](https://github.com/m4heshd/better-sqlite3-multiple-ciphers/releases/tag/v8.0.2-beta.1)
|
|
27
|
-
- **better-sqlite3** - [`8.0.1`](https://github.com/JoshuaWise/better-sqlite3/releases/tag/v8.0.1)
|
|
20
|
+
- **better-sqlite3-multiple-ciphers** - [`8.1.0`](https://github.com/m4heshd/better-sqlite3-multiple-ciphers/releases/tag/v8.1.0)
|
|
21
|
+
- **better-sqlite3** - [`8.1.0`](https://github.com/JoshuaWise/better-sqlite3/releases/tag/v8.1.0)
|
|
28
22
|
- **SQLite** - [`3.40.1`](https://www.sqlite.org/releaselog/3_40_1.html)
|
|
29
23
|
- **SQLite3 Multiple Ciphers** - [`1.5.5`](https://github.com/utelle/SQLite3MultipleCiphers/releases/tag/v1.5.5)
|
|
30
24
|
|
|
25
|
+
- ### Beta
|
|
26
|
+
- **better-sqlite3-multiple-ciphers** - [`8.0.2-beta.1`](https://github.com/m4heshd/better-sqlite3-multiple-ciphers/releases/tag/v8.1.1-beta.0)
|
|
27
|
+
- **better-sqlite3** - [`8.1.0`](https://github.com/JoshuaWise/better-sqlite3/releases/tag/v8.1.0)
|
|
28
|
+
- **SQLite** - [`3.41.0`](https://www.sqlite.org/releaselog/3_41_0.html)
|
|
29
|
+
- **SQLite3 Multiple Ciphers** - [`1.6.0`](https://github.com/utelle/SQLite3MultipleCiphers/releases/tag/v1.6.0)
|
|
30
|
+
|
|
31
31
|
## Help this project stay strong! 💪
|
|
32
32
|
|
|
33
33
|
`better-sqlite3` is used by thousands of developers and engineers on a daily basis. Long nights and weekends were spent keeping this project strong and dependable, with no ask for compensation or funding, until now. If your company uses `better-sqlite3`, ask your manager to consider supporting the project:
|
|
@@ -126,6 +126,8 @@ console.log(row.firstName, row.lastName, row.email);
|
|
|
126
126
|
```
|
|
127
127
|
The same method should be used if you want to create a new encrypted database that can be opened using DB Browser for SQLite.
|
|
128
128
|
|
|
129
|
+
You can also use [`key()`](https://github.com/m4heshd/better-sqlite3-multiple-ciphers/blob/master/docs/api.md#keybuffer---number) and [`rekey()`](https://github.com/m4heshd/better-sqlite3-multiple-ciphers/blob/master/docs/api.md#rekeybuffer---number) functions for encryption and decryption tasks.
|
|
130
|
+
|
|
129
131
|
### Read more about encryption at [SQLite3MultipleCiphers documentation](https://utelle.github.io/SQLite3MultipleCiphers/).
|
|
130
132
|
|
|
131
133
|
## Why should I use this instead of [node-sqlite3](https://github.com/mapbox/node-sqlite3)?
|