B
beamer
Unregistered / Unconfirmed
GUEST, unregistred user!
各位请帮忙看看,这个过程的问题在哪?
Source code:
If Application.MessageBox('该批员工确认加入公司吗?','提示',mb_yesno or
mb_iconinformation)=idno then
Exit;
with DM1.DBQry do
begin
close;
SQL.Clear;
SQL.Add('Insert into Empinfo select * from NewEmpInfo');
try
ExecSQL;
// 注:程序在此停下。提示数据表关键字(员工工号)重复错误。
except
ShowMessage('新员工工号可能与现有员工号重叠!!');
end;
end;
// with
问题:
为什么程序不能执行异常处理?
Source code:
If Application.MessageBox('该批员工确认加入公司吗?','提示',mb_yesno or
mb_iconinformation)=idno then
Exit;
with DM1.DBQry do
begin
close;
SQL.Clear;
SQL.Add('Insert into Empinfo select * from NewEmpInfo');
try
ExecSQL;
// 注:程序在此停下。提示数据表关键字(员工工号)重复错误。
except
ShowMessage('新员工工号可能与现有员工号重叠!!');
end;
end;
// with
问题:
为什么程序不能执行异常处理?