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

Home -> Community -> Usenet -> c.d.o.server -> Pl/SQL - OUT Parameter Passing to OUT Parameter

Pl/SQL - OUT Parameter Passing to OUT Parameter

From: Daigodai <d_at_mail.com>
Date: Wed, 14 Feb 2007 12:47:12 -0500
Message-ID: <12t6ip4b79mvucc@corp.supernews.com>


So I wrote proc_new to replace proc_old,
(which has silly, non-sensical parameter name that's getting on my nerves)

I have to leave proc_old's interface in place

So both have identical interface, only differ in parameter names. Since parameters are all OUT...I want to ask you

Do you think tthere is going to be a "problem" ? Anything anything wrong with this ?
thx
10g


PROCEDURE proc_new
(p_1 OUT NUMBER,

 p_2 OUT NUMBER,
 p_3 OUT NUMBER)
IS
BEGIN

PROCEDURE proc_old
(one OUT NUMBER,

 two OUT NUMBER,
 three OUT NUMBER)
IS
BEGIN
   proc_new (one, two, three) ;
END proc_old; Received on Wed Feb 14 2007 - 11:47:12 CST

Original text of this message

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