Using the ADT, I created a SQLite database as follows:
SQLiteDatabase myDB;
myDB = this.openOrCreateDatabase("ddk.db", MODE_PRIVATE, null);
myDB.execSQL("CREATE TABLE IF NOT EXISTS Tablezz (Field1 VARCHAR, Field2 INT(3));");
I cannot find a file called ddk.db
anywhere on my computer (PC/Windows 7). The app seems to find it okay. Why can't I?
Thanks.