SQLite database on PhoneGap / iOS - More than 5mb possible

后端 未结 3 927
迷失自我
迷失自我 2020-12-08 12:40

I\'m a little confused about the limitations of using SQLite in a Phonegap-Native-App on iOS.

You can read many posts about the limit of 5mb storage and the fact, th

3条回答
  •  执念已碎
    2020-12-08 13:13

    I found out by myself:

    It succeeds to open the first transaction and insert the 7000 records at one time in that one and only transaction.

    If I split the inserts into separate transactions, let's say 500 records per transaction, the limitation of 5 MB takes affect. PhoneGap doesn't say anything, it just doesn't insert the records.

提交回复
热议问题