我仍然对如何处理数据库违规错误感到困惑。这段代码是否提供了最好的错误处理?或者任何其他处理错误的方式,这也让用户清楚为什么会发生错误?
procedure TForm2.cxButton1Click(Sender: TObject);
var
sp:TADOStoredProc;
errorMsg : string;
begin
//
sp := TADOStoredProc.Create(nil);
try
sp.Connection := FOrm1.ADOConnection1;
sp.ProcedureName := 'cfg.AddConfiguration';
sp.Parameters.CreateParameter('@RETURN_VALUE', TFieldType.ftInteger, pdReturnValue, 0, 0);
sp.Parameters.CreateParameter('@key', ftString, pdInput, 50, cxTextEdit1.Text);
sp.Parameters.CreateParameter('@caption', ftString, pdInput, 50, cxTextEdit2.Text);
sp.Parameters.CreateParameter('@datatype', ftString, pdInput, 50, cxComboBox1.Text);
sp.Parameters.CreateParameter('@description', ftString, pdInput, 4000, cxMemo1.Text);
try
sp.ExecProc;
except
on e:EOleException do
begin
errorMsg := 'Failed to add new configuration.';
if e.ErrorCode = 2601 then
begin
errorMsg := errorMsg + sLineBreak + 'Possible duplicate in key!';
end;
MessageDlg(errorMsg, mtError, [mbOK], 0);
end;
end;
finally
sp.Free;
end;
end;