ITD w akcji
Krokodylki przy rondzie w Kołbieli od strony Grójca.
create or replace PROCEDURE X_XML_NEW(Nie dziala dla 2048 ORA-29532: Java call terminated by uncaught Java exception: java.lang.ArrayIndexOutOfBoundsException: -2048
doc OUT Xmldom.DOMDocument, node OUT Xmldom.DOMNode, pid varchar2) AS
BEGIN
doc := Xmldom.newDOMDocument;
Xmldocumentcover.setCharset(doc.ID, 'UTF8');
node := Xmldom.makeNode(doc);
END;
declare
x xmldom.DOMDocument;
xx xmldom.DOMNode;
begin
for i in 1..30000 loop
begin
X_XML_NEW(x, xx, i||'');
xmldom.freeDocument(x);
exception when others then
begin
dbms_output.put_line('Nie dziala dla '||i||' '||SQLERRM);
xmldom.freeDocument(x);
exception when others then
null;
end;
end;
end loop;
end;