I'm using phonegap to access a database on the device to perform some inserts, however I'm getting less than ideal performance.
Questions:
I see that there are some SQLite plugins for phonegap out there, do these have better performance comparing with the default Storage API?
what are the best/most used SQLite plugins for all three major platforms? (android, ios, wp)
how do I improve phonegap SQLite performance?
the two most important performance improvement that I can do if I were to interact with SQLite directly according to this thread seems to be to
- perform the inserts in a transaction
- prepare the insert statement
all my insert happened in one transaction, but how would I make the second item happen? is it possible with the Storage API?
Thanks.