예제 #1
0
 /** Drops underlying database table using DAOs. */
 public static void dropAllTables(SQLiteDatabase db, boolean ifExists) {
   EmployeeDao.dropTable(db, ifExists);
   AdminDao.dropTable(db, ifExists);
 }