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: Branching logic in PL/SQL, positive instead of exception

Re: Branching logic in PL/SQL, positive instead of exception

From: <Jared.Still_at_radisys.com>
Date: Wed, 13 Mar 2002 14:38:44 -0800
Message-ID: <F001.0042853A.20020313143844@fatcity.com>


Use SQL%found

It's in the manual. :)

Jared

"Hagedorn, Linda" <lindah_at_epocrates.com> Sent by: root_at_fatcity.com
03/13/02 12:34 PM
Please respond to ORACLE-L  

        To:     Multiple recipients of list ORACLE-L <ORACLE-L_at_fatcity.com>
        cc: 
        Subject:        Branching logic in PL/SQL, positive instead of exception


Hello,
I'm looking for an example of structured PL/SQL code that does not use exception logic for branching, but instead recognizes that data is found.

As a bad example,
 Select col1 from test.table t where exists (select z.zip from zip_table z where t.zip=z.zip ) into v_col1 ;
 exception
 when no_data_found
   begin
   select col2 from test.table2 t2 where exists (select z.zip from zip_table z where t2.zip=z.zip) into v_col1 ; ;

   exception
   when no_data_found
     begin
I've checked the books and cannot see how to test for a positive result instead of a negative (exception) result. Does anyone have a good example of branching logic on record found? Thanks, Linda

--

Please see the official ORACLE-L FAQ: http://www.orafaq.com
--

Author:
  INET: Jared.Still_at_radisys.com

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Wed Mar 13 2002 - 16:38:44 CST

Original text of this message

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