Пример #1
0
 /** Drops underlying database table using DAOs. */
 public static void dropAllTables(SQLiteDatabase db, boolean ifExists) {
   ThunderAVSourceDao.dropTable(db, ifExists);
   NovelDao.dropTable(db, ifExists);
   JokeDao.dropTable(db, ifExists);
   ImageDao.dropTable(db, ifExists);
 }