I have a webapp that I\'m building, and have just started with SQLite. I have been able to create my form, open the database I created, create the table, and fields i need, and
tx.executeSql('SELECT * FROM foo', [], function (tx, results) {
var len = results.rows.length;
for (var i = 0; i < len; ++i) {
var obj = results.rows.item(i);
alert(obj);
}
});
also see this for short tutorial http://html5doctor.com/introducing-web-sql-databases/