SQLite数据库WHERE子句

时间:2015-11-21 07:57:35

标签: android sqlite android-sqlite

我的WHERE条款在Lollipop工作,但在Kitkat没有返回任何内容 谁能告诉我为什么?

我的代码:

   Cursor cursor;
   String[] projections={Detabase_info.NewInfo.PAGE_ID,Detabase_info.NewInfo.TITLE};
   String wherecause=Detabase_info.NewInfo.CATAGORY +"=?";
   String[] wherearg={catagory};
   cursor=db.query(Detabase_info.NewInfo.TABLE_NAME,projections,wherecause,wherearg,null,null,null);
   Log.d("file", "=====>>>>" + cursor.getCount());

它在棒棒糖中起作用,但在Kitkat中不起作用 有谁知道为什么?

0 个答案:

没有答案