In C#, if you set up a method parameter using the params keyword, that parameter will take in an indefinite number of arguments. When calling the method, you can then send a comma-separated list of arguments for that parameter.
Does PL/SQL have an equivalent feature for method parameters?
Thanks!
Andrew L
No. The
paramskeyword is syntactic sugar that is converted to an array by the compiler. Oracle apparently is less ‘sweet’. The closest you can get is create a procedure that accepts a variable-size array (Varray).