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/4e35ae3e79d91b321346 to your computer and use it in GitHub Desktop.
Save gpickin/4e35ae3e79d91b321346 to your computer and use it in GitHub Desktop.
Getting Started with WebSQL in your Mobile App - Code 3
db.transaction(function (tx) {
tx.executeSql('CREATE TABLE IF NOT EXISTS doctors (id unique, doctorName)');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment