如何使用 JPQL 获取 blob 字段的长度?

发布于 2024-12-09 01:13:13 字数 251 浏览 1 评论 0原文

我有一个 JPA 实体,其中有一个 blob 字段。我想编写一个 JPQL 查询来获取实体 blob 的长度(我不想将 blob 加载到内存中)。

例如,在 Oracle 中,我可以使用以下 SQL 查询:

SELECT length(blob_field) FROM my_table WHERE id = ?

How can I fetch the blob's length with JPQL?

I have a JPA entity with a blob field in it. I want to write a JPQL query to fetch the length of the entity's blob (I don't want to load the blob into the memory).

For instance, in Oracle, I can use the following SQL query:

SELECT length(blob_field) FROM my_table WHERE id = ?

How can I fetch the blob's length with JPQL?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

我不是你的备胎 2024-12-16 01:13:13

你不能。 JPQL 长度函数计算字符串中的字符数,而 blob 中的字节数不符合该定义。

但是,您可以对以 CLOB(字符/字符数组或 Java 类型的字符串)形式保留的属性使用长度。

//can use length function for CLOBs:
@Lob char[] a;
@Lob Character b;
@Lob String c;

//can not use length function for BLOBs:
@Lob byte[] d;
@Lob Byte e;
@Lob Serializable f;

You cannot. JPQL length-function counts numbers of characters in string, and number of bytes in blob doesn't fit to that definition.

But, you can use length for attributes that are persisted as CLOB (char/Characters array or String as Java type).

//can use length function for CLOBs:
@Lob char[] a;
@Lob Character b;
@Lob String c;

//can not use length function for BLOBs:
@Lob byte[] d;
@Lob Byte e;
@Lob Serializable f;
拥抱我好吗 2024-12-16 01:13:13

如果使用 EclipseLink,您可以使用 JPQL 中的“FUNC”函数来定义数据库函数。

看,
http://wiki.eclipse.org/EclipseLink/UserGuide/JPA/Basic_JPA_Development /查询/Support_for_Native_Database_Functions

If using EclipseLink you can use the "FUNC" function in JPQL to define a database function.

See,
http://wiki.eclipse.org/EclipseLink/UserGuide/JPA/Basic_JPA_Development/Querying/Support_for_Native_Database_Functions

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