Ziemlich einfache Frage - Ich habe ein Attribut, in dem ich doppelte Anführungszeichen haben möchte. Wie entkomme ich ihnen? ich habe es versucht
- ""
- ""
- \\ "
Und ich habe die Variable @xml sowohl für den XML-Typ als auch für varchar (max) für alle erstellt.
declare @xml xml --(or varchar(max) tried both)
set @xml = '<transaction><item value="hi "mom" lol"
ItemId="106" ItemType="2" instanceId="215923801" dataSetId="1" /></transaction>'
declare @xh int
exec sp_xml_preparedocument @xh OUTPUT, @xml
insert into @commits --I declare the table, just removed it for brevity
select
x.*
from openxml(@xh,'/transaction/item')
WITH (
dataItemId int,
dataItemType int,
instanceId int,
dataSetId int,
value varchar(max)
) x