SSIS 中的 XML 列具有字节顺序标记
我正在 SSIS 包中使用 oledb 数据源从数据库中提取列。该列是 XML 数据类型。在SSIS中,它被自动识别为数据类型DT_NTEXT。它将转到一个脚本组件,我试图将其加载到 System.Xml.XmlDocument 中。这是我用来将 xml 数据转换为字符串的代码:
System.Text.Encoding.Default.GetString(Row.Data.GetBlobData(0, Row.Data.Length))
这是正确的方法吗?
我看到的一件奇怪的事情是,在一台服务器上,我在结果字符串中得到了字节顺序标记,而在另一台服务器上却没有。我不介意知道为什么会这样,但我真正的愿望是如何在没有 BOM 的情况下获得这个字符串。
帮助我,Stack Overflow,你是我唯一的希望......
I'm using an oledb data source in an SSIS package to pull a column from a database. The column is XML data type. In SSIS, it is automatically recognized as data type DT_NTEXT. It's going to a script component where I'm trying to load it into a System.Xml.XmlDocument. This is the code that I'm using to get the xml data into a string:
System.Text.Encoding.Default.GetString(Row.Data.GetBlobData(0, Row.Data.Length))
Is this the correct way?
One odd thing that I'm seeing is that on one server, I get a byte-order-mark in the resulting string, and another server I don't. I wouldn't mind knowing why that is the case, but my real desire is how to get this string without the BOM.
Help me, Stack Overflow, you're my only hope...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我能够让它工作的唯一方法:
.Trim() 删除 BOM。我不确定这是否是“正确”的方式,但这是迄今为止唯一有效的方法。
This is the only way I was able to get it to work:
The .Trim() removes the BOM. I'm not sure if this is the "right" way, but it's the only thing that's worked so far.