cordova-sqlite-evmax-build-free 0.0.3 → 0.0.4
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/CHANGES.md +4 -0
- package/README.md +1 -1
- package/package.json +1 -1
- package/plugin.xml +1 -1
- package/spec/www/spec/sqlite-version-test.js +1 -1
- package/src/deps/android/sqlc-evplus-ndk-driver.jar +0 -0
- package/src/deps/common/sqlite3.c +8371 -6409
- package/src/deps/common/sqlite3.h +153 -14
package/CHANGES.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changes
|
|
2
2
|
|
|
3
|
+
# cordova-sqlite-evmax-build-free 0.0.4
|
|
4
|
+
|
|
5
|
+
- SQLite 3.37.2 update from cordova-sqlite-evplus-ext-free-dependencies@0.4.2 - with resolution for a very rare & unlikely corruption issue from SQLite 3.35.0 ref: https://sqlite.org/forum/forumpost/ac381d64d8
|
|
6
|
+
|
|
3
7
|
# cordova-sqlite-evmax-build-free 0.0.3
|
|
4
8
|
|
|
5
9
|
- SQLite 3.36.0 update from cordova-sqlite-evplus-ext-free-dependencies@0.4.1 - includes BLOBFROMBASE64 for Android only at this point
|
package/README.md
CHANGED
|
@@ -202,7 +202,7 @@ See the [Sample section](#sample) for a sample with a more detailed explanation
|
|
|
202
202
|
- This plugin version includes the following extra (non-standard) features:
|
|
203
203
|
- BASE64 integrated from [brodybits / sqlite3-base64](https://github.com/brodybits/sqlite3-base64), using [brodybits / libb64-encode](https://github.com/brodybits/libb64-encode) (based on <http://libb64.sourceforge.net/> by Chris Venter, public domain)
|
|
204
204
|
- REGEXP for Android (default Android-sqlite-connector database implementation), iOS, and macOS using [brodybits / sqlite3-regexp-cached](https://github.com/brodybits/sqlite3-regexp-cached) (based on <http://git.altlinux.org/people/at/packages/?p=sqlite3-pcre.git> by Alexey Tourbin, public domain)
|
|
205
|
-
- SQLite __`3.
|
|
205
|
+
- SQLite __`3.37.2`__ included when building (all platforms), with the following compile-time definitions:
|
|
206
206
|
- `SQLITE_THREADSAFE=1`
|
|
207
207
|
- `SQLITE_DEFAULT_SYNCHRONOUS=3` (EXTRA DURABLE build setting) ref: [xpbrew/cordova-sqlite-storage#736](https://github.com/xpbrew/cordova-sqlite-storage/issues/736)
|
|
208
208
|
- `SQLITE_LOCKING_STYLE=1` on iOS/macOS ONLY
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cordova-sqlite-evmax-build-free",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "Cordova/PhoneGap sqlite storage - free evmax enterprise version with premium stability and performance improvements including workaround for super-large INSERT transactions & SELECT results on Android (version with external sqlite3 dependencies)",
|
|
5
5
|
"cordova": {
|
|
6
6
|
"id": "cordova-sqlite-evmax-common-free",
|
package/plugin.xml
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
|
|
3
3
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
4
4
|
id="cordova-sqlite-evmax-build-free"
|
|
5
|
-
version="0.0.
|
|
5
|
+
version="0.0.4">
|
|
6
6
|
|
|
7
7
|
<name>Cordova sqlite storage - free evmax common version branch with premium stability performance improvements including workaround for super-large INSERT transactions and SELECT results on Android (with external sqlite3 dependencies)</name>
|
|
8
8
|
|
|
@@ -104,7 +104,7 @@ var mytests = function() {
|
|
|
104
104
|
expect(rs).toBeDefined();
|
|
105
105
|
expect(rs.rows).toBeDefined();
|
|
106
106
|
expect(rs.rows.length).toBe(1);
|
|
107
|
-
expect(rs.rows.item(0).myResult).toBe('3.
|
|
107
|
+
expect(rs.rows.item(0).myResult).toBe('3.37.2');
|
|
108
108
|
|
|
109
109
|
// Close (plugin only) & finish:
|
|
110
110
|
(isWebSql) ? done() : db.close(done, done);
|
|
Binary file
|