Can I use the Android Device Manager to see the database or does the database exists only in memory? Below is my code to create the database.
SQLiteDatabase sqlitedb;
sqlitedb = openOrCreateDatabase("MyDB",MODE_PRIVATE,null);
sqlitedb.execSQL("CREATE TABLE IF NOT EXITS MyTable("ID" INTEGER PRIMARY
KEY AUTOINCREMENT, NAME VARCHAR(150));