Firebird Exceptions
Posted: 30.07.2008, 08:06
I have stored procedure in Firebird server and try to execute it from my application, like:
and when my StoredProc in Firebird raise an any my personal Exception with some text - i don't get it in ZStoredProc...
i have a message like:
How i can get text from my personal exception in Firebird.
I'm using ZeosDBO 6.6.2 in Lazarus.
Thank's for the reply!
Code: Select all
try
ZStoredProc.ExecProc; // or Open;
except
on E: Exception
Showmessage(E.Message)
end;
i have a message like:
Code: Select all
cat: Other, proto: firebird-2.0, msg: exception @1 @1 @1 @1, errcode: -836, error: exception @1
I'm using ZeosDBO 6.6.2 in Lazarus.
Thank's for the reply!