Subject | EXCEPTION |
---|---|
Author | Arcadio Ortega |
Post date | 2004-09-17T09:09:34Z |
CREATE EXCEPTION excepcion_1 'something';
BEGIN
....
EXCEPTION excepcion_1;
....
WHEN EXCEPTION excepcion_1
DO
BEGIN
.....
END
END
I would like to write:
BEGIN
.....
EXCEPTION excepcion_1;
....
WHEN ANY
DO
BEGIN
any variable containing 'excepcion_1';
END
END
Thank you
[Non-text portions of this message have been removed]
BEGIN
....
EXCEPTION excepcion_1;
....
WHEN EXCEPTION excepcion_1
DO
BEGIN
.....
END
END
I would like to write:
BEGIN
.....
EXCEPTION excepcion_1;
....
WHEN ANY
DO
BEGIN
any variable containing 'excepcion_1';
END
END
Thank you
[Non-text portions of this message have been removed]