Re: [GENERAL] PLSQL function calling another function

2008-10-09 Thread Tom Lane
<[EMAIL PROTECTED]> writes: > I am trying to figure out how to call one PLSQL function from another, > specifically how to access the return values from the callee. > I made two test functions, A and B. A calls B. > B returns two values: > OUT tid integer > OUT

[GENERAL] PLSQL function calling another function

2008-10-09 Thread cyw
Hi All, I am trying to figure out how to call one PLSQL function from another, specifically how to access the return values from the callee. I made two test functions, A and B. A calls B. B returns two values: OUT tid integer OUT msg character varying In call