Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> UTL_HTTP problem
Hi
I am trying to get an html page into a table using the utl_http package. However the script that I execute has the follwoing problems, can anyone shed some light.
declare pieces utl_http.html_pieces;
2 begin
3 pieces := utl_http.request_pieces('http://www.oracle.com/');
4 for i in 1 .. pieces.count loop
5 dbms_output.put_line('pieces');
6 end loop;
7 exception
8 when utl_http.init_failed theN 9 NULL;
ORA-06510: PL/SQL: unhandled user-defined exception ORA-06512: at "SYS.UTL_HTTP", line 126 ORA-06512: at line 3
Regards
A.V
Received on Fri Aug 29 2003 - 09:04:22 CDT