RAISE and RETURN in FUNCTION
tx103108May 23 2008 — edited May 23 2008I wish to RAISE an exception back to the calling procedure and RETURN a value from a FUNCTION ... what is the syntax? Can it be done?
FUNCTION myfunc RETURN BOOLEAN IS
....
EXCEPTION
WHEN OTHERS THEN
RAISE;
RETURN FALSE;
thank u.