can a %rowtype record be used as a parameter for a procedure?
for example, if i have...
is there a way to pass rs into the procedure?
for example, if i have...
Code:
declare
cursor c is select * from tblName;
rs c%rowtype;
procedure proc(???how to pass in rs here???)
begin
...
end;
is there a way to pass rs into the procedure?