Skip to content

Instantly share code, notes, and snippets.

@adrianoschmidt
Last active December 11, 2015 21:26
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 adrianoschmidt/a4192db73d2630412539 to your computer and use it in GitHub Desktop.
Save adrianoschmidt/a4192db73d2630412539 to your computer and use it in GitHub Desktop.
var db = null;
if(window.cordova) {
// used in cell phones
db = $cordovaSQLite.openDB("myapp.db");
} else {
// used in web browsers
db = window.openDatabase("myapp.db", "1.0", "MyApp", -1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment