cx_Oracle。如何访问远程机器?

发布于 2024-10-13 07:50:33 字数 533 浏览 3 评论 0原文

我查看了 cx_Oracle,但遇到了一些问题。首先,我的 Oracle 服务器位于远程计算机上。其次我不知道我的软件将部署在什么平台上。我建立的所有例子

都是这样的 http://www.len.ro/2009 /08/cx_oracle-on-ubuntu-9-04-jaunty/ 或者 这https://stackoverflow.com/questions/592/cx -oracle-how-do-i-access-oracle-from-python

假定 Oracle 服务器位于同一台计算机上。是否有可能进行一些静态编译,以便我可以轻松地将我的软件从一台电脑移动到另一台电脑?

谢谢

I had a look at cx_Oracle but I have a couple of problems with it. First , my oracle server is on remote machine. Second I do not know on what platform my software will be deployed. All the examples I have founded

like this
http://www.len.ro/2009/08/cx_oracle-on-ubuntu-9-04-jaunty/
or
this https://stackoverflow.com/questions/592/cx-oracle-how-do-i-access-oracle-from-python

assume to have oracle server on the same machine. Is there possibility to have some static compilation so I can easily move my software from one pc to the other?

thx

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

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

发布评论

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

评论(1

似梦非梦 2024-10-20 07:50:33

当然cx_Oracle可以与在其他机器上运行的服务器一起工作。但在客户端计算机上,您必须安装 Oracle 客户端并对其进行配置。我不知道Oracle客户端安装是否可以添加到您的应用程序的安装程序中。通常它很大(600 MiB 左右),所以这不是一个好主意。然后在所有客户端计算机上,您必须配置 Oracle 客户端:设置 ORACLE_HOME,运行 Oracle 工具来配置与数据库的连接等。

我知道的唯一“轻型”解决方案是使用 Jython 或 Java 中的 JDBC。在这种情况下,您可以使用仅需要一些 .jar 库的“精简”版本的连接字符串。这样的连接字符串如下所示:

db = DriverManager.getConnection('jdbc:oracle:thin:169.0.1.225:1521:test_db', 'user', 'passwd')

在客户端计算机上,它需要 CLASSPATH 上的 ojdbc6.jarorai18n.jar。无需安装、无需配置,简单易用。

Of course cx_Oracle can work with server working on other machine. But on client machines you will have to install Oracle client and configure it. I don't know if Oracle client installation can be added to installer of your application. Normally it is huge (600 MiB or so) so it is not a good idea. Then on all client machines you will have to configure Oracle client: set ORACLE_HOME, run Oracle tools to configure connection with database etc.

The only "light" solution I know is to use JDBC from Jython or Java. In this scenario you can use "thin" version of connect string that requires only some .jar libraries. Such connect string looks like:

db = DriverManager.getConnection('jdbc:oracle:thin:169.0.1.225:1521:test_db', 'user', 'passwd')

On client machines it needs ojdbc6.jar and orai18n.jar on CLASSPATH. No installation, no configuration, simple and easy.

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