我是新來的android。簡單的select查詢參數傳遞問題
我只是想對數據庫中的特定用戶計數表中的行數(uid是db中的列)。
爲此我做了以下功能:
public int getCount(int uid)
{
String query = "select count(*) from "+TABLE_MESSAGES+ " WHERE uid=?";
Cursor c = ourDB.rawQuery(query,uid);
}
但它給我的錯誤:
The method rawQuery(String, String[]) in the type SQLiteDatabase is not applicable for the arguments (String, int)
也想知道我怎麼能夠從這一回算?
請幫幫我。
如果正在查詢傳遞'uid'直接本身爲什麼你需要'?',這是錯誤的.... – CRUSADER