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

Home -> Community -> Usenet -> c.d.o.misc -> Re: Oracle Exceptions - newbie help

Re: Oracle Exceptions - newbie help

From: Jim <lermontovb_at_hotmail.com>
Date: Fri, 2 Jul 1999 00:26:47 +0100
Message-ID: <7lgtul$d4v$1@lure.pipex.net>


You can put a block round the code in question, i.e.

................. <your package/procedure, whatever>
BEGIN
    <code you're concerned about goes here>
    ......................

EXCEPTION
    When Other Then

        Null; -- if we just want to ignore the failure END; <and then back to the rest of the code>

Hope I helped
Jim

Noah Arliss <narliss_at_stumpworld.com> wrote in message news:3iQe3.561$6M6.168788_at_news.shore.net...
> Can anyone explain to me how to write a block of plsql code that will take
> an exception, handle it, and continue processing the rest of the logic?
>
>
Received on Thu Jul 01 1999 - 18:26:47 CDT

Original text of this message

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