informix 中 blob 文本的子字符串操作

发布于 2024-10-07 22:19:36 字数 121 浏览 1 评论 0原文

如何在 informix 中对 BLOB 数据类型的文本进行子字符串化?如果只能对 char 数据类型的文本进行操作,是否可以从 BLOB 转换为 char(如 oracle 中的 to_char)?

提前致谢,

How can I substring a text of BLOB datatype in informix? If the operation is possible only on text of char datatype, is it possible to convert from BLOB to char (like to_char in oracle)?

Thanks in advance,

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

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

发布评论

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

评论(1

如果没结果 2024-10-14 22:19:38

您可以使用子字符串运算符: http://publib.boulder.ibm.com/infocenter/idshelp/v111/index.jsp?topic=/com.ibm.sqls.doc/sqls1069.htm

代码如下所示:

select txt, txt[3,5] from  _text_test

(txt是 BLOB 类型,但我也使用 TEXT 类型进行了测试)。

警告! 在我的测试中,此类选择在由 JDBC(正确值)和 ODBC(似乎不正确)执行时给出不同的第二个字段值。我的ODBC客户端是3.70TC1,JDBC.3.70.JC1DE。请检查它在您的环境中是否正常工作。对于 txt value=1234567890,我使用 ODBC 得到了 123,使用 JDBC 得到了 345。看起来像错误!

You can use substring operator: http://publib.boulder.ibm.com/infocenter/idshelp/v111/index.jsp?topic=/com.ibm.sqls.doc/sqls1069.htm

Code looks like:

select txt, txt[3,5] from  _text_test

(txt is of BLOB type, but I also tested using TEXT type).

WARNING! In my tests such select gives different 2nd field values when executed by JDBC (correct values) and ODBC (seems incorrect). My ODBC Client is 3.70TC1, and JDBC.3.70.JC1DE. Please check if it works correctly in your environment. For txt value=1234567890 I got 123 using ODBC and 345 using JDBC. Seems like bug!

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