コード例 #1
0
ファイル: DaoMaster.java プロジェクト: winderif/wEHentaiApp
 /** Drops underlying database table using DAOs. */
 public static void dropAllTables(SQLiteDatabase db, boolean ifExists) {
   ImageDao.dropTable(db, ifExists);
   GalleryDao.dropTable(db, ifExists);
   TagDao.dropTable(db, ifExists);
   GallerysToTagsDao.dropTable(db, ifExists);
 }
コード例 #2
0
ファイル: DaoMaster.java プロジェクト: winderif/wEHentaiApp
 /** Creates underlying database table using DAOs. */
 public static void createAllTables(SQLiteDatabase db, boolean ifNotExists) {
   ImageDao.createTable(db, ifNotExists);
   GalleryDao.createTable(db, ifNotExists);
   TagDao.createTable(db, ifNotExists);
   GallerysToTagsDao.createTable(db, ifNotExists);
 }