您好我需要在我的本地数据库中更新新人,同时添加一个新人它显示以下错误:
Failure 1 (near "Build": syntax error) on 0x29abd0 when preparing 'update event_details set total_checkin=12, checkin=7, yet_to_check=5 where event_name=Final Build Test'.
我原来的java代码:
strQuery = "update event_details set total_checkin="+ strTotalMembers + ", checkin="+ strTotalCheckIns + ", yet_to_check="+ strYetToChecks + " where event_name=" + strTitle;
mySqlite.executeQuery(strQuery);
所有表格列都拼写正确。但我知道为什么会发生这个错误。请告诉来遇到这个问题。