Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Result Sets Work With Procedures But Not Functions?
On Fri, 21 Jan 2000 03:10:29 GMT, dressen_at_my-deja.com wrote:
Part of the problem might be that you are trying to use the procedure call ODBC Escape to call a function.
{? = call RefTest.FuncEmpData(?)}
try:
begin ? = RefText.FuncEmpData(?); end;
Or better yet switch to using the Function call escape instead. Received on Fri Jan 21 2000 - 11:02:11 CST
![]() |
![]() |