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