Skip to content

Instantly share code, notes, and snippets.

View philipesteiff's full-sized avatar

Philipe Steiff philipesteiff

  • TravelPerk
  • Spain
View GitHub Profile
@philipesteiff
philipesteiff / gist:1916007
Created February 26, 2012 10:44
[Android] Banco de dados e consulta
// BANCO DE DADOS
SQLiteDatabase db;
String path = Environment.getExternalStorageDirectory().toString();
db = openOrCreateDatabase(path + "/path/to/db.sqlite", SQLiteDatabase.CREATE_IF_NECESSARY, null);
Log.d("Debug", "Its open? " + db.isOpen());