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.

How can I access Oracle from Python?

How can I access Oracle from Python? I have downloaded a cx_Oracle msi installer, but Python can't import the …

python oracle database-connection cx-oracle
SELECT data from another schema in oracle

I want to execute a query that selects data from a different schema than the one specified in the DB …

sql oracle cx-oracle
cx_Oracle & Connecting to Oracle DB Remotely

How do you connect to a remote server via IP address in the manner that TOAD, SqlDeveloper, are able to …

cx-oracle
cx_Oracle and Exception Handling - Good practices?

I'm trying to use cx_Oracle to connect to an Oracle instance and execute some DDL statements: db = None try: …

python oracle cx-oracle
Help installing cx_Oracle

I'm trying to install the cx_Oracle for Python 2.6, but it is failing. I don't know enough about C or …

python cx-oracle
How can I do a batch insert into an Oracle database using Python?

I have some monthly weather data that I want to insert into an Oracle database table but I want to …

python oracle python-2.7 cx-oracle batch-insert
CX_Oracle - import data from Oracle to Pandas dataframe

Hy, I'm new in python and I want import some data from a Oracle Database to python (pandas dataframe) using …

python oracle cx-oracle
Why the need to commit explicitly when doing an UPDATE?

Here's my code: import cx_Oracle conn = cx_Oracle.connect(usr, pwd, url) cursor = conn.cursor() cursor.execute("UPDATE SO …

python cx-oracle
cx_Oracle: ImportError: DLL load failed: This application has failed

Here's what I did: I'm on Windows XP SP3 I already had Python 2.7.1 installed. I downloaded instantclient-basic-nt-11.2.0.3.0.zip, unzipped it, …

python dll oracle11g cx-oracle
easy_install cx_Oracle (python package) on Windows

So I found Help installing cx_Oracle but am still stuck. I downloaded the latest instantclient from oracle, and set …

python windows easy-install cx-oracle