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
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.