Can some one tell me the syntax of a function call in Ibatis .NET C# with oracle ODP?

I tried something

<procedure id="call_function" parameterMap="ret_result">
? = test_function
</procedure>

It doesn't work

The function is

create or replace function
test_function
return varchar2
is
begin
return 'OK';
end;
/

-Henry



Reply via email to