下面的语句只能在内存里修改,不能将修改后的结果送入数据库,请问怎样能将修改后的结果送入数据库?
with SimpleDataSet1 do
begin
edit;
FieldByName('biaoti').AsString:=Edit1.Text;
post;
ApplyUpdates(0);
end;
...全文
674打赏收藏
请问怎样能将修改后的结果送入数据库?
下面的语句只能在内存里修改,不能将修改后的结果送入数据库,请问怎样能将修改后的结果送入数据库? with SimpleDataSet1 do begin edit; FieldByName('biaoti').AsString:=Edit1.Text; post; ApplyUpdates(0); end;