예제 #1
0
 public static final void delDB(Context context) {
   SQLiteDatabase wdb = Words.getWordsDb(context);
   wdb.execSQL("delete from " + WordsDBHelper.TB_W_NAME);
   wdb.execSQL("delete from " + WordsDBHelper.TB_TR_NAME);
 }