用于获取 clob 值的 DB2 查询
在 DB2 中,我们如何编写查询来从 clob 数据类型列中获取值
In DB2 , how do we write a query to fetch value from clob datatype column
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
在 DB2 中,我们如何编写查询来从 clob 数据类型列中获取值
In DB2 , how do we write a query to fetch value from clob datatype column
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
不确定这是否对您的情况有帮助,但我们在我的公司遇到了类似的情况。对于我们来说,我们能够使用 C#/.NET 和 IBM iSeries 数据提供程序将值作为普通字符串读取。我们想要从 CLOB 中获取的数据只是简单的文本,这使得这个过程能够工作。
Not sure if this will help with your situation, but we ran into a similar situation at my company. For us, we were able to read the values out as a normal string using C#/.NET and the IBM iSeries data provider. The data we wanted to fetch from the CLOB was just simple text, which allowed this process to work.
对于 sql/pl,您可以从数据库中选择相同其他类型的 clob 数据,但如果您使用 jdbc,我应该为 Clob 数据选择 byte[]。
For sql/pl, you can select clob data from database same other type, but if you use jdbc I should byte[] for Clob data.