
January 18th, 2012, 01:11 AM
|
|
Registered User
|
|
Join Date: Jan 2012
Posts: 1
Time spent in forums: 18 m 10 sec
Reputation Power: 0
|
|
|
Variable arguments
Hi,
I am a newbie to SQL. I need to know a way in which I can pass variable arguments to UDF? Below is the sample code:
for execute statement:str
into :val1, :val2
do begin
fill(:val1, :val2)
end
Here its obvious that only 2 values are passed to UDF 'fill', but if there are more arguments (that depends on the execute statement, like val1, val2, val3 etc) then how do I pass these into UDF? Please help.
Thanks
|