How do I access an Oracle db without installing Oracle's client and cx_Oracle?
问题 I have two RHEL servers running Python 2.4 and 2.6 separately. There is an Oracle database on the other server I need to access. I was trying to install cx_oracle on my RHEL server but found out that the Oracle client must be installed first. The problem is, I don’t have permission to install Oracle's client on both RHEL servers. On the same servers, a Perl program can connect to the Oracle db using: DBI->connect("dbi:Oracle:host=myhost.prod.com;sid=prddb",'username','password') Can Python do