E:EIBCError doesn't occur

Discussion of open issues, suggestions and bugs regarding IBDAC (InterBase Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
calou
Posts: 116
Joined: Tue 27 May 2008 12:46

E:EIBCError doesn't occur

Post by calou » Mon 18 Jan 2010 10:37

Hello,

In my code i have :

Code: Select all

try
...     
except
       on E:EIBCError  do
       begin
         frmMain.IBCTrnsctnWrt.Rollback;
         showmessage(E.Message);
         result:=FALSE;
       end;
end
When the SQL error code = -303 error occurs, the except is not fired

Is it normal?

Thanks

calou
Posts: 116
Joined: Tue 27 May 2008 12:46

Post by calou » Mon 18 Jan 2010 11:12

Forget the post. I have done an error in my test

Regards

Post Reply