sql-maven-plugin 在 sqlCommand 中转义单引号
我有基于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
存储过程的参数需要用双引号引起来。这实际上有助于解决问题
The argument to stored procedure needs to be double guoted. that actually helped the situation