當我嘗試在我的插入查詢中包含Api_key
列及其值時,我得到unrecognized token error
,否則無法正常工作。插入的SQLite無法識別的令牌異常
下面的代碼:
public void InsertResult(String apikey,String auditid,String crit_id, int current_chap)
{
String s="INSERT OR IGNORE INTO Results(AuditID,CriteriaID,ChapterID,Api_key) VALUES("+auditid+","+crit_id+","+current_chap+","+apikey+")";
sp.execSQL(s);
}
這裏是我的logcat:
10-11 22:45:09.655: E/AndroidRuntime(8124): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.oxtro.trustea/com.oxtro.trustea.ChapterActivity}: android.database.sqlite.SQLiteException: unrecognized token: "3249f6dc" (code 1): , while compiling: INSERT OR IGNORE INTO Results(AuditID,CriteriaID,ChapterID,Api_key) VALUES(1,13,13,3249f6dc-c3ca-4c8d-a4de-df1834c579c4)
是的,這似乎是問題 – user2871937
爲正確因此問題進入一個解決的狀態,您應該紀念的答案。 – bclymer
永遠不要在SQL語句中硬編碼字符串! –