query1.sql内容:
update Inform set NeedOpen='False' and NeedClose='Open' where Id=3调用
query1.execsql
正常执行后,出现问题现象:
NeedOpen字段内容变为0,NeedClose保持原内容不变。如果这样就能成功更新。(每次只更新一个字段)
query1.sql内容:
update Inform set NeedOpen='False' where Id=3
update Inform set NeedClose='Open' where Id=3希望高手指点迷臻。