CREATE PROCEDURE TESTPROC
AS
BEGIN
/* Something that can throw any exception */
WHEN ANY DO BEGIN
/* How to get here exception text for logging? */
END
END
[email protected] [firebird-support] Fri, 24 Oct 2014 01:30:07 -0700
CREATE PROCEDURE TESTPROC
AS
BEGIN
/* Something that can throw any exception */
WHEN ANY DO BEGIN
/* How to get here exception text for logging? */
END
END