informix 中 blob 文本的子字符串操作
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用子字符串运算符: http://publib.boulder.ibm.com/infocenter/idshelp/v111/index.jsp?topic=/com.ibm.sqls.doc/sqls1069.htm
代码如下所示:
(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:
(txt is of
BLOB
type, but I also tested usingTEXT
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 got123
using ODBC and345
using JDBC. Seems like bug!