Oracle 中使用 XMLTYPE.TRANSFORM 进行 XSL 转换返回一个片段,需要文档

发布于 2024-10-27 21:12:43 字数 235 浏览 3 评论 0原文

这应该是一个简单的...

在 Oracle 中,我使用 XMLTYPE.TRANSFORM(myxml, myxsl) 来执行转换。

返回的 XMLTYPE 是一个片段(即没有 XML 文档声明)。我要求输出是一个文档(即带有 声明)。

我的 transform 使用独立工具运行良好。

任何帮助将不胜感激..

This should be an easy one...

In Oracle I am using XMLTYPE.TRANSFORM(myxml, myxsl) to perform a transformation.

The XMLTYPE returned is a fragment (i.e. there is no XML document declaration). I require the output to be a document (i.e. with the <?XML version="1.0" ?> declaration).

My trasform works fine using standalone tools.

Any help would be appreciated..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

默嘫て 2024-11-03 21:12:43

我最终通过将声明字符串添加到 CLOB 输出中来解决这个问题,如下所示: return ('' || xmltype.GETCLOBVAL(L_RESULT ));

I ended up solving this by prepending the declaration string to the CLOB output like so : return ('<?xml version="1.0" encoding="UTF-8"?>' || xmltype.GETCLOBVAL(L_RESULT));

予囚 2024-11-03 21:12:43

您可以使用 sys_xmlgen:
<代码>

中选择 sys_xmlgen(xmlforest(a.value, a.value2))
(选择“值”值,2 value2 from Dual)

You could use sys_xmlgen:

select sys_xmlgen(xmlforest(a.value, a.value2)) from
(select 'value' value, 2 value2 from dual) a

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文