dbms_xml* and CLOB problem.

Sachin

Member³
Problem 1;
The debug window (for a procedure) does not display values for the following variable types.
v_parser dbms_xmlparser.parser;
v_doc dbms_xmldom.domdocument;
v_nodelist dbms_xmldom.domnodelist;
v_node dbms_xmldom.domnode;

When pointed by the mouse or added to the watch list it says "Not a Variable". Of course, I have debug info turned on since it displays values for other variables.

Problem 3
Contents of a CLOB variable are truncated in the watch list.

Thanks,
 
Problem 1;
The debug window (for a procedure) does not display values for the following variable types.
These variables are all record types. Therefore the Oracle Debug API cannot return a value and reports them as "not a variable".

Problem 3
Contents of a CLOB variable are truncated in the watch list.
Variable values reported by the Oracle Debug API are restricted to 1000 bytes.
 
Back
Top