Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

PL/SQL, WebDB owa.vc_arr

Status
Not open for further replies.

fatcodeguy

Programmer
Feb 25, 2002
281
CA
WebDB forms and reports use the owa.vc_arr data type to pass arguments to procedures. It's a special array but I don't know how to extract the data from it (not as per conventional array).

Can anyone help me ? Thanks
 
An example :

function RET_FLD (ifld in varchar2
,num_entries in out number
,name_array in out owa.vc_arr
,value_array in out owa.vc_arr
,reserved in out owa.vc_arr
) return varchar2 is
wix number;
wval varchar2(300);

begin
for wix in 1..num_entries loop
if name_array(wix) = ifld then
wval := value_array(wix);
end if;
end loop;
return wval;
end;

Bye
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top