通过 JDBC 应用 Oracle PL/SQL
是否可以通过 Oracle JDBC 驱动程序(即不通过 SQLPLus*)创建/替换 PL/SQL?
更新 1: 驱动程序:ojdbc14 (JDBC)
更新 2: 正在通过 Ant
任务将更改应用到 Oracle,该任务已通过一个sql脚本文件。
在这种情况下,在 Ant 脚本中使用 SQLPlus 是不可能的(说来话长)。
Is it possible to create/replace PL/SQL via the Oracle JDBC driver, i.e not via SQLPLus* ?
Update 1: Driver: ojdbc14 (JDBC)
Update 2: Change is being applied to oracle via Ant <SQL>
task, which is passed a sql script file.
In this instance using SQLPlus in the Ant script is not possible (long story).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,标准 Ant sql 任务将执行此操作。这些选项对我有用:
我发现的一件事是处理对带有分隔符的最后一行很敏感 - 如果“/”后面有任何空格,则执行将失败。
Yes, the standard Ant sql task will do this. These options are working for me:
One thing I've found is that the processing is sensitive to the last line with the delimiter - if you have any whitespace after the "/" the execution will fail.