使用DbUnit将xml内容插入Blob列

时间:2018-12-19 17:45:02

标签: xml oracle blob dbunit

我想在我的数据库表中插入一些值。名为REQUEST的列之一是BLOB类型,应包含xml文件。假设我想将以下xml内容插入到REQUEST列中:

<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>

我有以下数据库表:

ID [数字] |创建了[TIMESTAMP(6)] |请求[BLOB)]

我的数据集如下:

<dataset>
    <MYTABLE
       <ID="1" CREATED="2014-01-2016 00:00:00" REQUEST="&lt;note&gt;&lt;to&gt;Tove&lt;/to&gt;&lt;from&gt;Jani&lt;/from&gt;&lt;heading&gt;Reminder&lt;/heading&gt;&lt;body&gt;Don't forget me this weekend!&lt;/body&gt;&lt;/note&gt;"
/>
</dataset>

我也尝试过以下操作:

<dataset>
    <MYTABLE
       <ID="1" CREATED="2014-01-2016 00:00:00" REQUEST="<note><to>Tove</to><from>Jani</from><heading>Reminder</heading><body>Don't forget me this weekend!</body></note>"
/>
</dataset>

或:

<dataset>
    <MYTABLE
       <ID="1" CREATED="2014-01-2016 00:00:00" REQUEST="[FILE]/path_to_file"
/>
</dataset>

REQUEST列保持为空。

0 个答案:

没有答案