I’m trying to use loop variable in executeSql function that contained by loop. But loop variable gets the last value if i don’t use a closure. When i use a closure , i don’t get the result list from executeSql function. Examples:
for (var i = 0; i < count; i++) {
tx.executeSql('SELECT AColumn FROM ATable WHERE refID=' + i, [],
function(tx,results) //success function
{
//do something
}
,errorfunction);
}
In success function “i” is always “count+1”.
To solve this i changed my code like this:
for (var i = 0; i < count; i++) {
tx.executeSql('SELECT AColumn FROM ATable WHERE refID=' + i, [],
(function(tx,results) //success function
{
//do something
})(i)
,errorfunction);
}
With this, i get the “i” right. But “results” is undefined.
I tried to pass “tx” and “i” like this:
(function(tx,results) //success function
{
//do something
})(tx,null,i)
With this i understand why i get “results” as null. I want to learn how can i get the right results of executeSql.
You’re looking for the following:
At the end of the day you need to pass a function of the signature
function(tx,res)which is clearly what that whole(function(i){ return function(tx,res){ ... }; })(i)does, since the outer anonymous function executes immediately and returns a function of that signature.The value
iin that inner function has the value ofiwhen the outer function was called (i.e. the value of each iteration), since the valueiis passed by value into the outer anonymous function, so references toiin the returned inner function will resolve correctly.