I have declared the array labels up at the top of my script
var labels = [];
A function, retrieveLabels is called to append to this array:
function retrieveLabels() {
labels = [];
var getLabelsQuery = "SELECT DISTINCT label FROM items ORDER BY label;"
db.transaction(function(tx) {
tx.executeSql(getLabelsQuery, [],
function(tx, labelsResults) {
for (var x = 0; x < labelsResults.rows.length; x++) {
var labelsRow = labelsResults.rows.item(x);
labels.push(labelsRow['label']);
}
console.log(labels.length);
console.log(labels);
}
);
});
}
The first console message shows 34 items. The second console message shows ["label1", "label2"....."label34"]
Where I call the function is here:
else {
init_db();
retrieveLabels();
console.log(labels.length);
console.log(labels);
}
The first console message shows 0 items. The second console message shows ["label1", "label2"....."label34"]
Why would this all of a sudden become a 0 length array? Or was it modified while inside of retrieveLabels?