P
publicnews
Unregistered / Unconfirmed
GUEST, unregistred user!
执行到Post时由于不允许的空值会有一个错误产生,但为什么我用下面语句却无法捕获这个错误,实在不解,我的ShowMessage执行不了
try
DataServiceMaster.Dataset.Post;
except
ShowMessage('abc');
//on E:Exception do
//begin
//ShowInfo(mtError,[mbOK],'保存错误','保存数据时发生错误,请检查你的数据是否正确完整!'+#13+'错误信息如下:'+#13,0);
//end;
end;
ShowMessage('test');
try
DataServiceMaster.Dataset.Post;
except
ShowMessage('abc');
//on E:Exception do
//begin
//ShowInfo(mtError,[mbOK],'保存错误','保存数据时发生错误,请检查你的数据是否正确完整!'+#13+'错误信息如下:'+#13,0);
//end;
end;
ShowMessage('test');