将值绑定到搜索字符串到表列中

发布于 2025-01-11 00:07:46 字数 386 浏览 0 评论 0 原文

我正在尝试使用以下代码在表列中实现搜索功能:

@Query(
        value = "SELECT * " +
            "FROM ACTIVE_PAIRS ap " +
            "WHERE ap.pair iLIKE CONCAT('%', ?1, '%') " +
            "LIMIT ?2 " +
            "OFFSET ?3"
    )
    Flux<ActivePairsFullDTO> findAllBySearchParam(String params,  long limit,  long offset);

但出现错误:语句不支持绑定参数

您知道如何解决此问题吗?

I'm trying to implement a search functionality into table column using this code:

@Query(
        value = "SELECT * " +
            "FROM ACTIVE_PAIRS ap " +
            "WHERE ap.pair iLIKE CONCAT('%', ?1, '%') " +
            "LIMIT ?2 " +
            "OFFSET ?3"
    )
    Flux<ActivePairsFullDTO> findAllBySearchParam(String params,  long limit,  long offset);

But I get error: Binding parameters is not supported for the statement

Do you know how I can fix this issue?

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

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

发布评论

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

评论(1

暮倦 2025-01-18 00:07:46

我对您收到此错误感到有点惊讶,因为我认为您应该收到的第一个错误是您的语句不是有效的 JPQL,也不是有效的 HQL,因为 LIMITOFFSET< /code> 不是 JPQL 的一部分。

为了使用 SQL,您需要指定 nativeQuery=true

由于您还返回 Flux 我不确定您是否使用 Spring Data JPA 作为标记,但是 Spring Data R2DBC?

无论哪种方式,您看到的异常都源于以下事实:某些数据库不接受 LIMITOFFSET 的绑定变量。

对于 Spring Data JPA,您可以通过简单地删除这些子句并向该方法添加一个 PageRequest 参数来解决此问题。

Spring Data R2DBC 不支持此方法。相反,您可以使用 SpEL 表达式来包含 LIMITOFFSET

I'm a little surprised that you are getting this error, because I would have thought the first error you should get is that your statement is not valid JPQL, nor HQL since LIMIT and OFFSET aren't part of JPQL.

In order to use SQL you need to specify nativeQuery=true in the annotation.

Since you also return a Flux I'm not sure you use Spring Data JPA as tagged, but Spring Data R2DBC?

Either way, the exception you are seeing stems from the fact that some databases don't accept bind variables for LIMIT and OFFSET.

For Spring Data JPA you can work around this by simply removing those clauses and add a PageRequest argument to the method.

This approach is not supported for Spring Data R2DBC. Instead you would use SpEL expressions to include the LIMIT and OFFSET values.

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