我想爲以下概念的代碼 如果Data_Base_Table爲空,那麼只向Data_Base_Table.Its插入數據只有一次。如果Data_Base_Table中已經有數據表示沒有任何內容。我寫這樣寫 這裏是檢查DataBase表數據是否爲空是否它是否正確 public boolean checkDataBaseTable(){ SQLiteDatabase dataBase = this.getReadableDatabase();android如何查看數據庫表是否爲空?
String s = "SELECT * FROM"+Data_Base_Table;
Cursor cursor = dataBase.rawQuery(s, null);
if (cursor.moveToFirst()) {
do {
//int i=cursor.getColumnCount();
}while(cursor.moveToNext());
}
return cursor!= null ? true : false;
}
編寫一個查詢選項卡上的表 –
得到算看到這個http://stackoverflow.com/questions/5202269/sqlite-query-in-android-to-count-rows –