Inspired by Ben Nadel's post, I thought I would use .promise() with asynchronous commands. Here's what I've got so far, but it 1) it doesn't work, 2) it could be improved even if it did work.

var dbo = openDatabase('dbName','1.0','Description goes here', 1048576);

console.log(jQuery.fn.jquery); // 1.7.1
var myPromise1 = dbo.transaction(function(myTrans) {
    myTrans.executeSql('drop table myTable;');
}).promise();
myPromise1.done(function() {
    var myPromise2 = dbo.transaction(function(myTrans) {
        myTrans.executeSql(
            'CREATE TABLE IF NOT EXISTS myTable' 
            + '(FieldID Integer NOT NULL PRIMARY KEY'
            + ',FieldName Text'
            + ');'
        );
    }).promise();
    myPromise2.done(function() {
        dbo.transaction(function(myTrans) {
            myTrans.executeSql("INSERT INTO myTable(FieldID,FieldName) VALUES(1,'A'");
            myTrans.executeSql("INSERT INTO myTable(FieldID,FieldName) VALUES(2,'B'");
            myTrans.executeSql("INSERT INTO myTable(FieldID,FieldName) VALUES(3,'C'");
        });
    });
});

I'm trying to not use callbacks. Maybe I should put the .promise() in the callback parameter position.

link|improve this question

Sorry, I always cringe when I see database queries in JavaScript :j – pixelbobby Jan 5 at 19:30
Oh, it's because dbo.transaction is not a jQuery object. – Phillip Jan 5 at 19:31
var myPromise2, maybe you should declare this outside of the done scope.. – zdrsh Jan 5 at 19:44
I'm going to post a new question based on some new knowledge. – Phillip Jan 5 at 19:51
New StackOverflow question: stackoverflow.com/questions/8748990/jquery-deferred-no-promises – Phillip Jan 5 at 20:07
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.