Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The scenario i am facing is im getting two table data in websql for that i have done it by

db.transaction(bday, errorCB1);
    function bday(tx){
        var querySql = function(sql, callback){
            tx.executeSql(sql, [], meminfoQuery, errorCB)
            function meminfoQuery(tx, results){
                var tab = [];
                for(i=0;i<results.rows.length;i++){
                    //console.log(id);
                    console.log(results.rows.item(i)); // need to store it in object
                    tab.push(results.rows.item(i)); // but im storin it in array
                }
                callback(tab);
            }
        }
        querySql('select query for table 1',function(tab){
            tx.executeSql('select query for table 2',[],resQuery,errorCB);
            function resQuery(tx, results){
                var tab2 = [];
                for(i=0;i<results.rows.length;i++){
                    //console.log(id);
                    console.log(results.rows.item(i)); // need to store it in object
                    tab2.push(results.rows.item(i)); // but im storin it in array
                }
                //need do sort those objects according to dob using date function
            }
        });
    }

In this is there a way send those as object and insert the second table objects into the object and sort objects by date. Here i just need to know how to send results objects in websql to another function and combing two objects into one. Any reference or sugesstion would be really helpful. Thanks.

share|improve this question

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.