通过 JDBC 应用 Oracle PL/SQL

发布于 2024-09-26 03:10:14 字数 257 浏览 5 评论 0原文

是否可以通过 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 技术交流群。

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

发布评论

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

评论(1

恰似旧人归 2024-10-03 03:10:14

是的,标准 Ant sql 任务将执行此操作。这些选项对我有用:

sql driver="oracle.jdbc.driver.OracleDriver"
       delimiter="/"
       delimitertype="row"
       keepformat="yes"
       caching="true"
       escapeprocessing="no"

我发现的一件事是处理对带有分隔符的最后一行很敏感 - 如果“/”后面有任何空格,则执行将失败。

Yes, the standard Ant sql task will do this. These options are working for me:

sql driver="oracle.jdbc.driver.OracleDriver"
       delimiter="/"
       delimitertype="row"
       keepformat="yes"
       caching="true"
       escapeprocessing="no"

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.

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