使用 JPA 的 ORA-22835(缓冲区太小)
我正在尝试保留带有 @Lob 带注释的字符串字段的实体。该字段的内容是否大于 40k 缓冲区大小限制。
我遇到的第一个问题与 JPA 实现(在我的例子中为 Hibernate)和 Oracle JDBC 驱动程序内部使用的 setString 方法有关。 解决了这个问题
<property name="hibernate.connection.SetBigStringTryClob" value="true"/>
添加到我的 persistence.xml 文件中
。然后,错误变为ORA-22835错误(缓冲区太小)。 JPA 有什么方法可以解决这个问题而不需要进行低级实现吗?有什么建议吗?
I am trying to persist an Entity with a @Lob annotated String field. The content of that fiels if bigger than the 40k buffer size limit.
The first problem I had was related to the setString method used internally by the JPA implementation (Hibernate in my case) and the Oracle JDBC Driver. This problem was solved adding
<property name="hibernate.connection.SetBigStringTryClob" value="true"/>
to my persistence.xml file.
Then, the error changed to a ORA-22835 error (the buffer is too small). ¿Is there any way that JPA solves this problem without going to a low-level implementation? ¿Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用 Oracle 10g Release 2 驱动程序(选择最新的 ojdbc14.jar,即 10.2.0.4)或更高版本(旧版本有 bug,如 之前的答案)。
Can your try with Oracle 10g Release 2 drivers (pick up the most recent ojdbc14.jar i.e. 10.2.0.4) or later (older versions are buggy as mentioned in this previous answer).