Is there a way to print values of a plsql record to the screen (dbms_output) without knowing the names or number of columns?
i.e.
declare
some_record some_cursor%rowtype;
begin
For each column in some_record loop
dbms_output.put_line(column name || ' ' ||column value);
end loop when no more columns;
end;
Message was edited by:
SamB