XML parsing semicolon expected - only when replacing amp; with amp;amp(预期 XML 解析分号 - 仅在替换 amp; 时与 amp;amp)
问题描述
我有以下查询,它有效:
I have the following query, which works:
DECLARE @Combined VARCHAR(MAX)
SET @Combined = 'mac cheese';
DECLARE @KeyTable TABLE (Keyword VARCHAR(MAX))
INSERT INTO @KeyTable
SELECT @Combined
IF OBJECT_ID('tempdb..#Temp') IS NOT NULL
DROP TABLE #Temp
SELECT LTRIM(RTRIM(m.n.value('.[1]','varchar(8000)'))) AS Keyword
INTO #Temp
FROM
(
SELECT CAST('<XMLRoot><RowData>' + REPLACE(Keyword,',','</RowData><RowData>') + '</RowData></XMLRoot>' AS XML) AS x
FROM @KeyTable
)t
CROSS APPLY x.nodes('/XMLRoot/RowData')m(n);
SELECT * FROM #Temp
当我尝试向 @Combined
添加一个&符号时,它给出了一个特殊字符错误:
When I try to add an ampersand to the @Combined
it gives a special character error:
DECLARE @Combined VARCHAR(MAX)
SET @Combined = 'mac & cheese';
DECLARE @KeyTable TABLE (Keyword VARCHAR(MAX))
INSERT INTO @KeyTable
SELECT @Combined
IF OBJECT_ID('tempdb..#Temp') IS NOT NULL
DROP TABLE #Temp
SELECT LTRIM(RTRIM(m.n.value('.[1]','varchar(8000)'))) AS Keyword
INTO #Temp
FROM
(
SELECT CAST('<XMLRoot><RowData>' + REPLACE(Keyword,',','</RowData><RowData>') + '</RowData></XMLRoot>' AS XML) AS x
FROM @KeyTable
)t
CROSS APPLY x.nodes('/XMLRoot/RowData')m(n);
SELECT * FROM #Temp
所以我添加了一些代码来用 &
替换 & 号,但我得到了一个分号错误:
So I added some code to replace the ampersand with &
and I get a semicolon error:
DECLARE @Combined VARCHAR(MAX)
SET @Combined = 'mac & cheese'
SET @Combined = REPLACE(@Combined, '&', '&')
DECLARE @KeyTable TABLE (Keyword VARCHAR(MAX))
INSERT INTO @KeyTable
SELECT @Combined;
IF OBJECT_ID('tempdb..#Temp') IS NOT NULL
DROP TABLE #Temp
SELECT LTRIM(RTRIM(m.n.value('.[1]','varchar(8000)'))) AS Keyword
INTO #Temp
FROM
(
SELECT CAST('<XMLRoot><RowData>' + REPLACE(Keyword,',','</RowData><RowData>') + '</RowData></XMLRoot>' AS XML) AS x
FROM @KeyTable
)t
CROSS APPLY x.nodes('/XMLRoot/RowData')m(n);
SELECT * FROM #Temp
我尝试将分号移动到不同的位置,甚至添加更多,但它不起作用.任何人都可以提供的任何帮助将不胜感激!
I've attempted moving the semicolon to various locations and even adding more but it just won't work. Any help anyone can provide would be appreciated!
推荐答案
不,你不应该开始自己替换特殊字符!
No, you should not start to replace special characters on your own!
下次您的字符串包含 <
或 ->
并且会再次中断.
Next time your string contains a <
or a ->
and will break again.
让 FOR XML PATH()
为您完成繁重的工作:
Let FOR XML PATH()
do the hard work for you:
SELECT 'This is pure text: ' + 'mac & cheese,<test1>,"test2"';
SELECT 'This is encoded: ' + (SELECT 'mac & cheese,<test1>,"test2"' AS [*] FOR XML PATH(''))
第二个结果:这是编码:mac &奶酪,<test1>,<test2>
你唯一需要改变的是使用 (SELECT ... FOR XML PATH())
而不是 naked Keyword
>
The only thing you have to change, is to use (SELECT ... FOR XML PATH())
instead of the naked Keyword
DECLARE @KeyTable TABLE (Keyword VARCHAR(MAX))
INSERT INTO @KeyTable VALUES('mac & cheese,<test1>,"test2"');
SELECT LTRIM(RTRIM(m.n.value('.[1]','varchar(8000)'))) AS Keyword
FROM
(
SELECT CAST('<XMLRoot><RowData>' + REPLACE((SELECT Keyword AS [*] FOR XML PATH('')),',','</RowData><RowData>') + '</RowData></XMLRoot>' AS XML) AS x
FROM @KeyTable
)t
CROSS APPLY x.nodes('/XMLRoot/RowData')m(n);
这将隐式替换所有禁用字符...
This will replace all forbidden characters implicitly...
结果
mac & cheese
<test1>
"test2"
这篇关于预期 XML 解析分号 - 仅在替换 & 时与 &amp的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:预期 XML 解析分号 - 仅在替换 & 时与 &


基础教程推荐
- 如何在 SQL 中将 Float 转换为 Varchar 2021-01-01
- 二进制文件到 SQL 数据库 Apache Camel 2021-01-01
- 在多列上分布任意行 2021-01-01
- 如何根据该 XML 中的值更新 SQL 中的 XML 2021-01-01
- 什么是 orradiag_<user>文件夹? 2022-01-01
- oracle区分大小写的原因? 2021-01-01
- mysql选择动态行值作为列名,另一列作为值 2021-01-01
- 表 './mysql/proc' 被标记为崩溃,应该修复 2022-01-01
- MySQL 中的类型:BigInt(20) 与 Int(20) 2021-01-01
- 在 MySQL 中:如何将表名作为存储过程和/或函数参数传递? 2021-01-01