在db2中使用ibatis将字符串插入到clob
我有一个具有数据类型 java.sql.Clob 属性的 bean。如何设置 bean 中 clob 对象的值?该值是来自 jsp 表单的字符串。
i have a bean with attribute of datatype java.sql.Clob. How do i set the value of the clob object in the bean? the value is a string which is from a jsp form.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我自己想出了解决方案。
我没有将属性设置为 java.sql.Clob,而是将数据类型更改为 java.lang.String 数据类型,然后将 ibatis.xml 中的参数映射更改为 #clobValue:CLOB#,这又将 String 转换为 CLOB。
I figured out the solution myself.
Instead of having the attribute as java.sql.Clob i changed the data type to java.lang.String data type and then changed the parameter mapping in the ibatis.xml to #clobValue:CLOB# which in turn converted the String to CLOB.