I don't know if anyone could help me, but I'm with a little problem with a code
using Web Sql Database. Although it is not maintained I'm using this technology
in Google Chrome to create a small extension.
The problem is the folowing: I would like to return the resultset to a
fuction the called the function below. Is it possible?
function Read(){
var db = this.db;
db.transaction(function(tx) {
tx.executeSql("SELECT * FROM table", [], function(tx, results)
{
return results
});
});
}
Any help would be of great value.


