You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In case of multiple sqlite plugins installed the behavior should be considered UNDEFINED. It may lead to compile error, runtime error, data loss due to multiple sqlite problem discussed in #626 (litehelpers/Cordova-sqlite-storage#626), other forms of data loss, etc. etc. Will be documented.
I installed both cordova-sqlite-ext and cordova-sqlcipher-adapter normally.
And I tried to open the encrypted db with key option by below code,
private options = { name: 'pos.db', key: 'test', location: 'default', createFromLocation: 1 };
this.sqlite.create(this.options).then((db: SQLiteObject) => {...}
Like attachment, the db file is opened well, but the table in the db cannot be found.
The text was updated successfully, but these errors were encountered: