Here I am making app of Sqlite3 database in Windows store apps in HTML /java script.
Right now I am using Sqlite3-WinRT component.
Its working fine but I am not getting required performance. Its taking too much time for insertion data. Is there any way to make the insert performance faster with this library?
If this is not possible, can any one can suggest me any other library or component for using sqlite3 in Windows store apps??
Thanks in advance..
Transactions have increased performance in C# SQLite3 applications, so they may help you in your Win JS application.
If you look at issue 56 in the SQLite3-WinRT issues list, they show how to use transactions:
Some notes:
PRAGMA
is temporary, and may not be needed in the future. You should test and see if it is needed.db.runAsync("COMMIT TRANSACTION;");