X
xnfzy
Unregistered / Unconfirmed
GUEST, unregistred user!
请教各位大侠:with ADOQuery1 do begin ADOquery1.Close; ADOquery1.SQL.Clear; ADOquery1.SQL.Add('UPDATE foods SET inmac=:inmac and stats=:stats where mac=:mac'); ADOquery1.Parameters.ParamByName('mac').Value:=edit4.Text; ADOquery1.Parameters.ParamByName('inmac').Value:=edit4.Text; ADOquery1.Parameters.ParamByName('stats').Value:='ok'; {showmessage(ADOquery1.Parameters.ParamByName('mac').Value); showmessage(ADOquery1.Parameters.ParamByName('inmac').Value); showmessage(ADOquery1.Parameters.ParamByName('stats').Value); //显示数据正常,就是不能更新} ADOquery1.ExecSQL; end为什么不没的更新Access表里面的内空!执行也没有提示错误!