I must use function calls
Jayme Jeffman, May 20, 2008 - 2:53 pm UTC
Dear Sir,
I must use function calls, so I was trying to do something like :
<code>
declare x number :=0;
begin
x:= function_name(p1,p2,p3);
end;
/
How can I pass parameters to the begin/end block without creating a named procedure ?</code>
May 20, 2008 - 4:07 pm UTC
I answered that
just bind
as I demonstrated above.
answer me this, what would the code look like for:
update t set x = p1, y = p2, z = p3;
you will bind p1, p2, p3 in the same way.
Thank you very much.
Jayme Jeffman, May 20, 2008 - 5:25 pm UTC
Dear Tom,
Thank you very much for answering my question.
You are very kind.
Regards.
So how was it done??
Karthick, May 21, 2008 - 1:31 am UTC
LUA. Can't argue against "Tables [being] the most important data structure" :)
Duke Ganote, May 21, 2008 - 11:11 am UTC