聰明人! 可以說我有一個表: id NUMBER name VARCHAR2 info XMLTYPE
--
1 Brad <?xml version="1.0" encoding="ISO-8859-5"?>
2 Angelina <?xml version="1.0" encoding="ISO-8859-5"?>
在我的包,我可以選擇它的一些集合變量v_t
我有一個類,看起來像這樣: [XmlType(TypeName = "rootType")]
public class myClass
{
public Class1 class1;
public Class2 class2;
[XmlType(TypeName = "type1")]
public class class1
{ ... cl
我想測試一個PL/SQL過程,它需要一個XML CLOB作爲一個參數 PROCEDURE example_proc(ex_xml CLOB) IS
BEGIN
/* Find the second < (skip over declaration) */
ln_position := instr(pc_shipment_xml, '<', 1, 2);
/* Find the space
我將CLOB在如下PLSQL到XMLTYPE xml xmltype := xmltype(Input); 輸入變量包含文本如下 <request xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<comment>Hello, this is "james"</comment>
</request>
進XML轉換後的文本改變