cx_Oracle。如何访问远程机器?
我查看了 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然cx_Oracle可以与在其他机器上运行的服务器一起工作。但在客户端计算机上,您必须安装 Oracle 客户端并对其进行配置。我不知道Oracle客户端安装是否可以添加到您的应用程序的安装程序中。通常它很大(600 MiB 左右),所以这不是一个好主意。然后在所有客户端计算机上,您必须配置 Oracle 客户端:设置 ORACLE_HOME,运行 Oracle 工具来配置与数据库的连接等。
我知道的唯一“轻型”解决方案是使用 Jython 或 Java 中的 JDBC。在这种情况下,您可以使用仅需要一些
.jar
库的“精简”版本的连接字符串。这样的连接字符串如下所示:在客户端计算机上,它需要
CLASSPATH
上的ojdbc6.jar
和orai18n.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:On client machines it needs
ojdbc6.jar
andorai18n.jar
onCLASSPATH
. No installation, no configuration, simple and easy.