Cursor cursor = this.db.rawQuery("select topic_id from " + TABLE_NAME +
" where Ref_Topic_Id = '"+ ref_topic_id.toString() + "'", null);
如果上述WHERE
子句不返回任何數據,cursor
的值是多少?如果SQL查詢返回沒有數據,那麼遊標的值是什麼?
Cursor cursor = this.db.rawQuery("select topic_id from " + TABLE_NAME +
" where Ref_Topic_Id = '"+ ref_topic_id.toString() + "'", null);
如果上述WHERE
子句不返回任何數據,cursor
的值是多少?如果SQL查詢返回沒有數據,那麼遊標的值是什麼?
如果您運行cursor.getCount(),您將得到0
yesssssssssss ..非常感謝你!它的工作! –
如果cursor爲null,那麼如何執行cursor.getCount()它可能是nullpointerexception – Dharmendra
'cursor.getCount()'將等於零'光標= null' –
接受的答案。 –