Iam new to developing HTML5 applications. In this I want to insert 1000\'s of records into sqlite database using HTML5. This process is very slow. How to use BEGIN/COMMIT be
This issue is that you're using a separate transaction for each step, instead of reusing it, hence why it's running poorly.
db.transaction IS a transaction, so no BEGIN/COMMIT needed.
Try this:
Status Message