Phonegap: WebSql or SqLite?

后端 未结 3 927
北荒
北荒 2021-02-19 13:00

I have been working with phonegap for little time, and i\'m having some trouble with the concept of storage in it.

So, the documentation states that there is this datab

3条回答
  •  清酒与你
    2021-02-19 13:34

    var myBuggedDb = window.openDatabase(shortName, version, displayName,maxSize); opens websql database. If you want to use Sqlite, you must use 3rd party plugins like https://github.com/litehelpers/Cordova-sqlite-storage

提交回复
热议问题