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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Urgent : record set in Stored procedure output parameter

Status
Not open for further replies.

anili98

Programmer
May 4, 2004
2
US
I need to call a oracle stored procedure in ASP. The Stored procedure will perform some business rules and returns array / record set in the out parameter.

Can some one please suggest me a way to capture the the array of records returned by the stored procedure in ASP?

Following is the code I used to execute the procedure from SQL PLUS.

declare
arr3 generic_procs.arr1;
begin
generic_procs.national_avg(arr3);
for i in 1..10 loop
dbms_output.put_line(arr3(i).a||'='||arr3(i).b);
end loop;
end;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top