SSIS 中的 XML 列具有字节顺序标记

发布于 2024-08-22 06:47:58 字数 418 浏览 2 评论 0原文

我正在 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 技术交流群。

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

发布评论

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

评论(1

枕头说它不想醒 2024-08-29 06:47:58

这是我能够让它工作的唯一方法:

System.Text.UnicodeEncoding.Unicode.GetString(...).Trim()

.Trim() 删除 BOM。我不确定这是否是“正确”的方式,但这是迄今为止唯一有效的方法。

This is the only way I was able to get it to work:

System.Text.UnicodeEncoding.Unicode.GetString(...).Trim()

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.

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