Skip to content
Advertisement

Passing Multiple Values To PL/SQL Input

I have an Oracle package which contains a function. This function has 3 inputs. I need to pass multiple values to each input. I could automate a process which runs it multiple times with each combination of variables but I would like to only make one call to the database.

Simplified Code

Advertisement

Answer

Pass it with quoted string (Q'<delimeter><your_actual_string><delimeter>') as follows:

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement