我有一个表,我一次插入一个字段以外的数据,另一次我想插入未填充的数据,我试图用这个值更新表。我尝试了以下查询,但出现错误。请帮我怎么做
public boolean insertConfigStartTime(Long StartTime)
{
ContentValues updateContentValues = ConfigStartTimeValue(StartTime);
if(this.data.update("tb_Config", updateContentValues, "id=select last_insert_rowid()", null)>0)
return true;
else
return false;
}
public ContentValues ConfigStartTimeValue(Long StartTime)
{
ContentValues configContentvalues = new ContentValues();
configContentvalues.put("ProcessStartTime", StartTime);
return configContentvalues;
}