如何使用 JPQL 获取 blob 字段的长度?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你不能。 JPQL 长度函数计算字符串中的字符数,而 blob 中的字节数不符合该定义。
但是,您可以对以 CLOB(字符/字符数组或 Java 类型的字符串)形式保留的属性使用长度。
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).
如果使用 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