cordova-sqlite-evmax-build-free 0.3.0 → 0.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/CHANGES.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changes
2
2
 
3
+ # cordova-sqlite-evmax-build-free 0.4.0
4
+
5
+ - further improve large read performance on Android with even larger internal result chunk size
6
+
7
+ # cordova-sqlite-evmax-build-free 0.1.2
8
+
9
+ - patch: improve large read performance on Android with larger internal result chunk size, with Android NDK JAR rebuilt with update from: https://github.com/brody4hire/android-sqlite-evmax-ndk-driver-free/tree/evmax-main-no-icu _which is NOT included in master branch for 0.2.x_
10
+
3
11
  # cordova-sqlite-evmax-build-free 0.3.0
4
12
 
5
13
  - improve large read performance on Android with larger internal result chunk size
package/README.md CHANGED
@@ -56,7 +56,7 @@ under consideration:
56
56
 
57
57
  Super-premium enterprise version with additional performance and stability improvements for Android, iOS, ~~and macOS,~~ including workarounds for super-large INSERT transactions and SELECT results on Android - with limited extra features (missing pre-populated database support)
58
58
 
59
- with ICU support for Android & iOS using built-in platform ICU on each platform
59
+ with ICU support for Android & iOS using built-in platform ICU on each platform - requires minimum Android 12; Android pre-12 supported by 0.1.x with limited updates
60
60
 
61
61
  NOTE that this should work for UPPER, LOWER, & LIKE functions. REGEXP & `icu_load_collation` cannot be supported consistently by built-in platform ICU on all platforms.
62
62
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cordova-sqlite-evmax-build-free",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
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-build-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.3.0">
5
+ version="0.4.0">
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
 
@@ -408,7 +408,7 @@ public class SQLitePlugin extends CordovaPlugin {
408
408
  void open(File dbFile) throws Exception {
409
409
  if (!isNativeLibLoaded) {
410
410
  System.loadLibrary("sqlc-evmax-ndk-driver");
411
- EVNDKDriver.sqlc_evmax_set_result_chunk_cutoff_size(500 * 1000);
411
+ EVNDKDriver.sqlc_evmax_set_result_chunk_cutoff_size(50 * 1000 * 1000); // [evmax build] internal cutoff adjusted for large result performance
412
412
  isNativeLibLoaded = true;
413
413
  }
414
414