使用 C# 将 Oracle Clob 数据导出到 csv 的建议

发布于 2024-10-09 22:29:41 字数 105 浏览 3 评论 0原文

您能否建议我们如何将 oracle clob 数据字段导出到 csv 文件。该表还包含其他常规数据类型。另外,如果 clob 数据无法放入 csv,还有其他可用选项吗?

谢谢,纳文

Can you please suggest how can we export the oracle clob data field to csv file. The table contain other regular data types too. And also if the clob data cannot fit in a csv what are the other options available?

Thanks, Naveen

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

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

发布评论

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

评论(2

生生漫 2024-10-16 22:29:41

您可以像读取字符串一样读取 clob。新的 System.Data.OracleClient.OracleConnection() 等。当您拥有数据时,您可以使用 StreamWriter 写入 CSV,因为它们只是文本文件。

You can read clob's just like strings. new System.Data.OracleClient.OracleConnection() and so on. When you have the data, you can write CSV's with a StreamWriter because they are just text files.

心安伴我暖 2024-10-16 22:29:41

如果您使用支持以下功能的强大 CSV 编写器,则可以在 CSV 文件中存储 CLOB:

  • 多行字段
  • 双引号 设置
  • 编码

然后您可以在具有强大 CSV 解析器的任何其他应用程序(例如 Excel)中读取导出的文件。

只是不要选择名称中含有“simple”一词的任何 CSV 类。他们肯定太简单了。

Storing CLOBs in a CSV file is possible if you use a serious CSV writer that supports:

  • Multi-line fields
  • Doubling of double quotes
  • Setting the encoding

Then you can read the exported file in any other application that has a serious CSV parser, such as Excel.

Just don't go for any CSV classes that have the word simple in their name. They certainly will be too simple.

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