Storage of SQLite database using Android and Phonegap

后端 未结 3 1428
情书的邮戳
情书的邮戳 2020-12-04 20:26

I\'m developing a Android Cordova/Phonegap app where I want to use a SQLite database. I used the example from the official documentation.

// Wait for device         


        
3条回答
  •  死守一世寂寞
    2020-12-04 21:14

    In WAL mode, any changes are written to the -wal file; the database file itself does not get updated until a checkpoint is done.

    If there is a -wal file, you must copy it, too.

提交回复
热议问题