How to get serveral return values by function of oracle?
How to get serveral return values by function of oracle?
[56 byte] By [
LGD] at [2007-11-9 21:09:30]

# 1 Re: How to get serveral return values by function of oracle?
You can't do this...unless you just return a comma delimited string or something
and then parse it...the point of a function is a single return value...you
an pass multiple values INTO a function, but not out.
Use a stored procedure with IN/OUT or OUT parameters to hold your output
variables.
Chris