sql-maven-plugin 在 sqlCommand 中转义单引号

发布于 2024-10-14 21:05:28 字数 436 浏览 2 评论 0原文

我有基于 Maven 的项目,我尝试使用 sql-maven-plugin 来设置/拆卸数据库以进行系统测试。 我放入 sqlCommand 元素:

CALL SOME_STORED_PROC('SYSTEST')

但是,maven 构建在此 SQL 上失败,并出现以下异常:

org.apache.maven.lifecycle.LifecycleExecutionException: 错误:函数“SOME_STORED_PROC(UNKNOWN)”不存在 无法识别满足给定参数类型的函数 您可能需要添加显式类型转换

我怀疑存储过程的参数需要以某种特殊的方式进行转义。我找不到任何文档/示例。

有什么想法吗?

阿维亚德

I have maven based project and I try to use sql-maven-plugin in order to setup/tear-down DB for system tests.
I put in sqlCommand element:


CALL SOME_STORED_PROC('SYSTEST')

however, maven build fails on this SQL with the followig exception:


org.apache.maven.lifecycle.LifecycleExecutionException:
ERROR: Function 'SOME_STORED_PROC(UNKNOWN)' does not exist
Unable to identify a function that satisfies the given argument types
You may need to add explicit typecasts

I suspect that the argument of the stored procedure needs to be escaped in some special way. I failed to find any docs/ examples.

Any thoughts?

Aviad

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

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

发布评论

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

评论(1

成熟的代价 2024-10-21 21:05:28

存储过程的参数需要用双引号引起来。这实际上有助于解决问题

The argument to stored procedure needs to be double guoted. that actually helped the situation

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