I want to write an Oracle PL/SQL stored procedure that takes as a parameter a list of pairs of some other type, say varchar2(32). Is this possible? What’s the best way to do it?
I want to write an Oracle PL/SQL stored procedure that takes as a parameter
Share
It sounds like you just want to pass in a collection, i.e.
Obviously, in reality, the function would do something with the array that was passed in, but that’s the general idea.