SQLite Forum

How to upgrade sqlite in cordova-sqlite-storage
Login

How to upgrade sqlite in cordova-sqlite-storage

(1) By DineshS (dinesh.shrinath) on 2020-07-14 08:51:25 [source]

We have a Mobile app based on Cordova which uses the cordova-sqlite-storage plugin. This plugin uses the Sqlite to store or access the data. This plugin contains the Sqlite connectors for Android app and Sqlite amalgamation for ios app. Right now this plugin uses or compatible with the Sqlite version 3.30.1. It does not support the latest Sqlite 3.32.3 which has fixes for various vulnerabilities.

To get rid of Sqlite vulnerabilities we want to include the latest Sqlite in our project. But since we are using the cordova-sqlite-storage plugin we have to use the Sqlite which this plugin is supporting. Is there any way by which we can include the latest Sqlite which will work with cordova-sqlite-storage plugin and it will not break the application?

(2) By Richard Hipp (drh) on 2020-07-14 09:35:16 in reply to 1 [link] [source]

(3) By DineshS (dinesh.shrinath) on 2020-07-17 04:20:37 in reply to 2 [link] [source]

Thanks for sharing the link. It was helpful. Thanks!