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 error. DPI-1047: Cannot locate a 64-bit Oracle Client library

I installed the library and when trying to access SQL in jupyter notebook with my credentials the following error appears: …

python python-3.x windows-10 cx-oracle
Issue building cx_Oracle - libclntsh.so.11.1 => not found

I'm trying to build cx_Oracle for a Python 2.7.2 and Oracle 11g installation but the built cx_Oracle.so cannot …

python oracle build cx-oracle
Python module "cx_Oracle" module could not be found

I recently installed cx_Oracle module on my machine, in order to connect to a remote Oracle database server. (I …

python oracle module cx-oracle
cx_Oracle doesn't connect when using SID instead of service name on connection string

I have a connection string that looks like this con_str = "myuser/[email protected]:1521/ora1" Where ora1 …

python oracle python-2.7 cx-oracle
Python cx_Oracle bind variables

I am a Python newbie, I am having troubles in the use of bind variables. If I execute the code …

python cx-oracle bind-variables
Better ways to print out column names when using cx_Oracle

Found an example using cx_Oracle, this example shows all the information of Cursor.description. import cx_Oracle from pprint …

python cx-oracle
How do I read cx_Oracle.LOB data in Python?

I have this code: dsn = cx_Oracle.makedsn(hostname, port, sid) orcl = cx_Oracle.connect(username + '/' + password + '@…

python cx-oracle
DatabaseError: ORA-01036: illegal variable name/number

I need to substitute the following values into select query. but i got the error as i mentioned below self.…

python python-2.7 oracle10g cx-oracle
How to write pandas dataframe to oracle database using to_sql?

I'm a new oracle learner. I'm trying to write a pandas dataframe into an oracle table. After I have made …

oracle pandas dataframe cx-oracle pandas-to-sql
cx_oracle and python 2.7

Im using python 2.7 and cx_oracle ( Windows x86 Installer (Oracle 10g, Python 2.7) ) and 'm having a bad time to set …

python python-2.7 cx-oracle