I have a procedure in a procedure. The inner procedure
contains out parameter. How I can call the inner procedure
in the out procedure and send the inner procedure parameter
value(out parameter value) into out procedure?
Answer Posted / bhavani sharan singh
Hi,
If i am correctly understand your question then solution is
given below,
Suppose the Inner procedure is
Prc_inner(pov_out_param OUT varchar2 )
and Outer Procedure is
Prc_outer( pov_out_paaram2 OUT varchar2)
as
lv_out_param VARCHAR2(SIZE)
begin
Prc_inner(lv_out_param );
--Assiging the inner value to outer procedure paramaeter
pov_out_param := lv_out_param ;
EXCEPTIOn
when others then
NULL;
END
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the difference between a primary key and a clustered index?
What is the difference between function, procedure and package in pl/sql?
What is trigger in pl sql?
What is a file delimiter?
Does sql*plus have a pl/sql engine?
What is rtm stands for?
How do I run a sql query?
How do you break a loop in pl sql?
what are date and time data types in mysql? : Sql dba
What is oracle pl sql developer?
What is the purpose of the partition table?
Can I learn sql in a week?
Explain how exception handling is done in advance pl/sql?
What is synonyms?
Is like operator in sql case sensitive?