我仍然有這個錯誤在Android! 我讀了許多解決方案,但他們是沒有幫助的.. 的錯誤是:沒有這樣的列:星:,編譯時:SELECT COUNT(*)爲總從tblf其中recId> 1名=星沒有這樣的列錯誤
什麼是錯的?我該如何解決它?
private void useRawQuery3() {
// TODO Auto-generated method stub
String[] args = {"1","Star"} ;
String mySQL = " select count(*) AS Total from tblf"
+ " where recId>" + args[0] + " and name=" + args[1] ;
Cursor c1 = db.rawQuery(mySQL, null) ;
int index = c1.getColumnIndex("Total") ;
c1.moveToFirst() ;
int theTotal = c1.getInt(index) ;
Toast.makeText(this, " Total3="+theTotal, Toast.LENGTH_LONG).show() ;
}
從手機中清除您的應用程序數據。然後重啓你的應用程序 – SerCna 2014-09-11 07:35:33