Top "Cx-oracle" questions

cx_Oracle is a Python extension module that allows access to Oracle databases and conforms to the Python database API specification.

cx_Oracle.DatabaseError: ORA-12514: TNS:listener does not currently know of service requested in connect descriptor

I am trying to do a sanity testing of newly installed Oracle client 12.2 in RHEL 7 linux from a Python program, …

python linux oracle database-connection cx-oracle
Python-Oracle Passing in a Cursor Out Parameter

I am trying to call a stored procedure between python and an oracle db. The problem I am having is …

python oracle cursor cx-oracle
Cannot Insert Unicode Using cx-Oracle

I am having an issue inserting unicode into an Oracle schema, I think the database is an Oracle 11g instance …

python oracle unicode cx-oracle
Python + CGI script cannot access environment variables

I'm coding a webservice on python that uses an Oracle database. I have cx_Oracle installed and working but I'm …

python apache cgi cx-oracle
cx_Oracle 'ORA-01843: not a valid month' with unicode parameter

I have the following: (using ipython) In [30]: con = cx_Oracle.connect('refill_test02/******@MYDB') In [31]: cur = con.cursor() In [32]: cur.…

python oracle unicode cx-oracle
Oracle 11g - query appears to cache even with NOCACHE hint

I'm doing some database benchmarking in Python using the cx_Oracle module. To benchmark results, I'm running 150 unique queries and …

python oracle oracle11g cx-oracle