Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: Q: any idea what are we missing ?

Re: Q: any idea what are we missing ?

From: Mladen Gogala <mgogala_at_verizon.net>
Date: Wed, 20 Sep 2006 09:46:20 -0400
Message-id: <1158759980l.3035l.0l@medo.noip.com>

On 09/20/2006 08:53:54 AM, Niall Litchfield wrote:
> It isn't being raised, which I think is the point.
>
> I'd prefer if you expect an exception to deal with it, and otherwise reraise
>

> 13 when others then
> 14 raise;
> 15* end tst;

There was a recent thread on Tom Kyte's blog devoted to the snippets like this one. OK, he was specifically talking about the "WHEN OTHERS" not followed by "RAISE", but you aren't doing anything here, you are catching an exception just to re-raise it in the next line. What in the world makes you catch exceptions just to re-raise them? I would advise something like this:

PRAGMA EXCEPTION_INIT(CONFUSE,-600); and then

WHEN OTHERS THEN
     RAISE CONFUSE;
END; That would be a great contribution to the clarity of the code and wouldn't cause any confusion.

-- 
Mladen Gogala
http://www.mgogala.com

--
http://www.freelists.org/webpage/oracle-l
Received on Wed Sep 20 2006 - 08:46:20 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US