I want to get a parameter's name in plsql.
For example,
procedure sp_example(myParam in varchar2) is
paramName varchar2(30);
begin
paramName = 'myParam';
end
end procedure sp_example;
Is there a way to get the name of myParam using reflection, instead of hard coding it?