First off, let me say I am enjoying working with PL/SQL Dev. very much. Thanks!
I've just started exploring XML DB, and am working through the demo at http://www.oracle.com/technology/sample_code/tech/xml/xmldb/XDBBasicDemo.pdf.
I can run an SQL statement like this
select value(x) from purchaseorder x
where existsNode( value(x), '/ElementName="someValue"]') =1
in SQLPlus on AIX 5.3 and I get output showing the document contents (in the DB it is stored as a row in the XMLType table named "purchaseorder").
However, in PL/SQL Dev it returns in the SQL window and "Object" in the command window.
Maybe this isn't a fair question because Oracle's SQL Developer doesn't handle it either! That returns SYS.XMLTYPE.
Is there a solution for this?
I've just started exploring XML DB, and am working through the demo at http://www.oracle.com/technology/sample_code/tech/xml/xmldb/XDBBasicDemo.pdf.
I can run an SQL statement like this
select value(x) from purchaseorder x
where existsNode( value(x), '/ElementName="someValue"]') =1
in SQLPlus on AIX 5.3 and I get output showing the document contents (in the DB it is stored as a row in the XMLType table named "purchaseorder").
However, in PL/SQL Dev it returns in the SQL window and "Object" in the command window.
Maybe this isn't a fair question because Oracle's SQL Developer doesn't handle it either! That returns SYS.XMLTYPE.
Is there a solution for this?