Instead of doing an each loop on a JSON file containing a list of SQL statments and passing them one at a time, is it possible with Safari client side storage to simply wrap the data in "BEGIN TRANSACTION" / "COMMIT TRANSACTION" and pass that to the database system in a single call? Looping 1,000+ statements takes too much time.

Currently iterating one transaction at a time:

$j.getJSON("update1.json",
  function(data){
    $j.each(data, function(i,item){
    		testDB.transaction(
    		    function (transaction) {
    		        transaction.executeSql(data[i], [], nullDataHandler, errorHandler);
    		    }
    		);
   });
});

Trying to figure out how to make just one call:

$j.getJSON("update1.json",
  function(data){
    		testDB.transaction(
    		    function (transaction) {
    		        transaction.executeSql(data, [], nullDataHandler, errorHandler);
    		    }
    		);
});

Has anybody tried this yet and succeeded?

link|improve this question
Thanks for your input everyone! – SKFox Nov 29 '09 at 21:54
feedback

3 Answers

up vote 1 down vote accepted

Every example I could find in the documentation seems to show only one SQL statement per executeSql command. I would just suggest showing an "ajax spinner" loading graphic and execute your SQL in a loop. You can keep it all within the transaction, but the loop would still need to be there:

$j.getJSON("update1.json",
    function(data){
       testDB.transaction(
           function (transaction) {
               for(var i = 0; i < data.length; i++){
                   transaction.executeSql(data[i], [], nullDataHandler, errorHandler);
               }
           }
       );
    }
);

Moving the loop inside the transaction and using the for i = should help get a little more speed out of your loop. $.each is good for less than a 1000 iterations, after that the native for(var = i... will probably be faster.

Note Using my code, if any of your SQL statements throw errors, the entire transaction will fail. If that is not your intention, you will need to keep the loop outside the transaction.

link|improve this answer
Correcting your Note. executeSql supports providing callback for errors, in your example it is errorHandler. If this handler returns true the transaction will fails, if false it will continue (or may be the other way around). – Michael Aug 9 '10 at 10:18
feedback

I haven't ever messed with HTML5 database storage (have with local/sessionStorage though) and I would assume that it's possible to run one huge string of statements. Use data.join(separator here) to get the string representation of the data array.

link|improve this answer
Thank you for your answer. It seems it won't accept more then one statement at a time, even when separated with ';'. – SKFox Nov 25 '09 at 23:48
It is a little database, meant for simple operations. If you want a full-blown database send the data to a server. If you want off-line operation, in a single-threaded javascript app then the built-in db works fine. – James Black Nov 26 '09 at 0:53
feedback

Yes, it is possible to process a whole group of statements within a single transaction with webSQL. You actually don't even need to use BEGIN or COMMIT, this is taken care of for you automatically as long as you make all your executeSql calls from the same transaction. As long as you do this every statement gets included within the transaction.

This makes the process much faster and also makes it so that when one of your statements has an error it rolls back the entire transaction.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.