SQL Server 2008:SQLXML 查询函数 .query('//mypath/text()') 不进行 XML 解码

发布于 2024-08-24 02:15:27 字数 305 浏览 4 评论 0 原文

在 Microsoft SQL Server 2008 中,当对 XML 流列值执行 .query('{xpath}/text()') 时,如果 XPath 选定节点的值包含“& amp;”,返回值为“&amp”而不是“&”。

这是一个错误,还是我做错了什么?或者更确切地说,如果 XPath 查询中的 text() 不应该这样做,我如何使用 SQLXML XPath 获取未编码的文本,即相当于 .innerText(根据 W3C XML DOM)?

In Microsoft SQL Server 2008, when executing .query('{xpath}/text()') on an XML stream column value, if the value of the XPath selected node contains "&", the return value is "&" instead of "&".

Is this a bug, or am I doing something wrong? Or rather, how do I get the unencoded text, i.e. equivalent of .innerText (per W3C XML DOM), with SQLXML XPath if text() in the XPath query isn't supposed to do that?

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

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

发布评论

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

评论(1

可是我不能没有你 2024-08-31 02:15:28

没有错误,SQL XML 正确解码 XML 转义序列:

declare @x xml;
set @x = '<node>&some</node>';
select @x.value(N'(node)[1]', N'varchar(max)');

您的问题很可能是您对 XML 的误解 query 方法:它返回一个 XML 片段,因此所有内容都将被...转义,因为它是 XML:

declare @x xml;
set @x = '<node>&some</node>';
select @x.query(N'/node/text()');

No bug, SQL XML decodes XML escape sequences correctly:

declare @x xml;
set @x = '<node>&some</node>';
select @x.value(N'(node)[1]', N'varchar(max)');

What most likely is your problem is a misunderstanding on your part of the XML query method: it returns an XML fragment, and as such all content will be... escaped, since it's XML:

declare @x xml;
set @x = '<node>&some</node>';
select @x.query(N'/node/text()');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文