聪明人! 可以说我有一个表: 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转换后的文本改变