Используя SQLite в HTML5, как мне выполнить такой вызов, чтобы он сразу возвращался вместо передачи результата другой функции?
try {
mydb.transaction( function(transaction) {
transaction.executeSql(
'SELECT name FROM celebs order by name limit 100 ',
[],
function(transaction, results) {
// would like to return the "results" back
},
errorHandler
);
});
// code to use the "results" array
} catch(e) {
alert(e.message);
}