Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: OWS: passing LOTS of CGI parms
Actually I just define a new type.
For instance, here is a test package and procedure showing how I've used it:
create or replace
package test_array is
type varchar_array is table of varchar2(30) index by binary_integer; null_varchar varchar_array; procedure test (p_array in varchar_array default null_varchar);end test_array;
create or replace
package body test_array is
procedure test (p_array in varchar_array default null_varchar) is begin for x in 1 .. 10000 loop begin array_value := p_array(x); exception when others then exit; end; end loop; end;
The <input type=hidden name=p_array> is used to pass these values into the package from html forms.
...jeff Received on Wed Aug 19 1998 - 14:02:32 CDT
![]() |
![]() |