在db2中使用ibatis将字符串插入到clob

发布于 2024-11-14 19:28:09 字数 80 浏览 2 评论 0原文

我有一个具有数据类型 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 技术交流群。

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

发布评论

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

评论(1

三人与歌 2024-11-21 19:28:09

我自己想出了解决方案。
我没有将属性设置为 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.

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