Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gpickin/a865355e5687ee99c918 to your computer and use it in GitHub Desktop.
Save gpickin/a865355e5687ee99c918 to your computer and use it in GitHub Desktop.
Getting Started with WebSQL in your Mobile App - Code 7
db.readTransaction(function (tx) {
tx.executeSql('SELECT * FROM doctors', [], function( tx, res ){ console.log(res.rows.item(0).doctorName); } );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment