Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> ?? Procedure call in HTF.ANCHOR
I have a loop to manipulate the contents of a cursor and display
information in an html
format. I make a call to htf.anchor linking the information to a
procedure call which requires more than one parameter. I have the
htf.anchor working for passing one parameter but now I need to pass two
- how do I do this? Below is a sample of the code:
For i IN dwg_cursor LOOP htp.tableRowOpen; hold := htf.anchor('docufind?docnum='i.dwgnum,i.dwgnum,i.dwgnum,i.dwgnum); ... END LOOP; The procedure docufind is defined as: Procedure docufind(docnum IN varchar2, doctest IN varchar2) .....
Thanks in advanced. Received on Fri Mar 27 1998 - 00:00:00 CST
![]() |
![]() |