C
cc112233
Unregistered / Unconfirmed
GUEST, unregistred user!
我目前正在开发一个三层的系统,出错如下问题,请大家指教!
procedure TfrmKXDZ.btnSaveClick(Sender: TObject);
Var
cdsVar :TClientDataSet;
begin
if Not (dst.DataSet is TClientDataSet) then
Exit;
cdsVar := dsT.DataSet as TClientDataSet;
if cdsVar.State in [dsEdit,dsInsert] then
begin
cdsVar.Post;
end;
if cdsVar.ChangeCount >0 then
begin
Try
cdsVar.ApplyUpdates(0);//不触发异常执行该句时,发现并没有将更新数据提交到数据表中,不知是保原因,谢谢各位高手指教,分数50,见者有份,不够再给。
Except
Application.MessageBox('保存不成功!','错误',MB_OK+ MB_ICONSTOP);
Exit;
end;
end;
end;
procedure TfrmKXDZ.btnSaveClick(Sender: TObject);
Var
cdsVar :TClientDataSet;
begin
if Not (dst.DataSet is TClientDataSet) then
Exit;
cdsVar := dsT.DataSet as TClientDataSet;
if cdsVar.State in [dsEdit,dsInsert] then
begin
cdsVar.Post;
end;
if cdsVar.ChangeCount >0 then
begin
Try
cdsVar.ApplyUpdates(0);//不触发异常执行该句时,发现并没有将更新数据提交到数据表中,不知是保原因,谢谢各位高手指教,分数50,见者有份,不够再给。
Except
Application.MessageBox('保存不成功!','错误',MB_OK+ MB_ICONSTOP);
Exit;
end;
end;
end;