使用 C# 将 Oracle Clob 数据导出到 csv 的建议
您能否建议我们如何将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以像读取字符串一样读取 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.
如果您使用支持以下功能的强大 CSV 编写器,则可以在 CSV 文件中存储 CLOB:
然后您可以在具有强大 CSV 解析器的任何其他应用程序(例如 Excel)中读取导出的文件。
只是不要选择名称中含有“simple”一词的任何 CSV 类。他们肯定太简单了。
Storing CLOBs in a CSV file is possible if you use a serious CSV writer that supports:
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.