使用 JPA 的 ORA-22835(缓冲区太小)

发布于 2024-08-22 12:48:27 字数 362 浏览 5 评论 0原文

我正在尝试保留带有 @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 技术交流群。

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

发布评论

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

评论(1

一梦等七年七年为一梦 2024-08-29 12:48:27

您可以尝试使用 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).

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