Tagged Questions

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

learn more… | top users | synonyms

16
votes
4answers
14k views

cx_Oracle - How do I access Oracle from Python?

How do I get started?
9
votes
2answers
6k views

Help me understand the difference between CLOBs and BLOBs in Oracle

This is mainly just a "check my understanding" type of question. Here's my understanding of CLOBs and BLOBs as they work in Oracle: CLOBs are for text like XML, JSON, etc. You should not assume ...
6
votes
3answers
812 views

Set database connection timeout in Python

I'm creating a RESTful API which needs to access the database. I'm using Restish, Oracle, and SQLAlchemy. However, I'll try to frame my question as generically as possible, without taking Restish or ...
6
votes
3answers
3k views

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 connect to databases with just the ip address, username, SID and password? Whenever I try to ...
5
votes
1answer
721 views

What are the tradeoffs of reusing a cursor vs. creating a new cursor?

In cx_Oracle (or Oracle in general), is it possible to allocate a cursor for each query, or to reuse a cursor across several queries. def getSomeData(curs): # case 1: pass in a cursor, which ...
5
votes
9answers
3k views

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 having some problems when I run my python code as CGI using Apache. For example the ...
5
votes
3answers
841 views

Newbie Python Question about tuples

I am new to Python, and I'm working on writing some database code using the cx_Oracle module. In the cx_Oracle documentation they have a code example like this: import sys import cx_Oracle ...
4
votes
2answers
5k views

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 MS Vis. Studio's compiler to even approach fixing it myself. This is what is output on the ...
4
votes
2answers
2k views

Error on connecting to Oracle from py2exe'd program: Unable to acquire Oracle environment handle

My python program (Python 2.6) works fine when I run it using the Python interpreter, it connects to the Oracle database (10g XE) without error. However, when I compile it using py2exe, the executable ...
4
votes
3answers
384 views

cx_oracle and oracle 7?

At work we have Oracle 7. I would like to use python to access the DB. Has anyone done that or knows how to do it? I have Windows XP, Python 2.6 and the cx_oracle version for python 2.6 However, when ...
3
votes
3answers
126 views

Connect python to oracle

I have installed oracle client and oracle client-dev, and setup ORACLE_HOME environment variable. Yet when I attempt to install tux_oracle (python setup.py build) I get the following: fatal error: ...
3
votes
3answers
492 views

How to export a table to csv or excel format

I need to export a oracle table to a csv/excel file format (along with the column headings). A solution through cx_oracle or through sqlplus welcome. Python code from the comment: con = ...
3
votes
2answers
887 views

How can I make cx-oracle bind the results of a query to a dictionary rather than a tuple?

Here is my code. I would like to find a way to have results from a query returned as a list of dictionaries rather than list of tuples. It seems like cx_oracle supports this with parts of the ...
3
votes
1answer
763 views

cx_Oracle problem trying to import python

I am trying to run python in an Apache WS in a linux RHEL x86_64. After Install and configure Python2.5 and Apache, I install Oracle Instant Client (basic and sdk) in a by an .rpm file withou any ...
3
votes
1answer
980 views

cx_Oracle and output variables

I'm trying to do this again an Oracle 10 database: cursor = connection.cursor() lOutput = cursor.var(cx_Oracle.STRING) cursor.execute(""" BEGIN %(out)s := 'N'; ...
3
votes
1answer
523 views

cx_Oracle, generators, and threads in Python

What is the behavior of cx_Oracle cursors when the connection object is used by different threads? How would generators affect this behavior? Specifically... Edit: The original example function was ...
3
votes
1answer
264 views

cx_Oracle MemoryError when reading lob

When trying to read data from a lob field using cx_Oralce I’m receiving “exceptions.MemoryError”. This code has been working, this one lob field seems to be too big. Example: xml_cursor = ...
3
votes
4answers
343 views

cx_Oracle and the data source paradigm

There is a Java paradigm for database access implemented in the Java DataSource. This object create a useful abstraction around the creation of database connections. The DataSource object keeps ...
3
votes
3answers
4k views

cx_Oracle - what is the best way to iterate over a result set?

There are several ways, what is the best one?
2
votes
2answers
146 views

How do I solve the ORA-01704: string literal too long error in Python cx_oracle?

I am trying to update an entry in a table usinig Python cx_oracle. The column is named "template" and it has a data type of CLOB. This is my code: dsn = cx_Oracle.makedsn(hostname, port, sid) orcl = ...
2
votes
1answer
84 views

How do I retrieve data from Oracle as a query result using an anonymous PL/SQL block in Python?

All the examples of using PL/SQL I can find end up looking like this (this example taken from Wikipedia): FOR RecordIndex IN (SELECT person_code FROM people_table) LOOP ...
2
votes
0answers
128 views

cx_Oracle and Exceptiong Handling - Good practices?

I'm trying to use cx_Oracle to connect to an Oracle instance and execute some DDL statements: db = None try: db = cx_Oracle.connect('username', 'password', 'hostname:port/SERVICENAME') ...
2
votes
2answers
209 views

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 passing a cursor out-parameter. The Oracle stored procedure is essentially: create or replace ...
2
votes
1answer
510 views

proble with soaplib (lxml) with apache2 + mod_wsgi

when I launch my application with apache2+modwsgi I catch Exception Type: ImportError Exception Value: DLL load failed: The specified module could not be found. in line from lxml import ...
2
votes
3answers
278 views

Capturing stdout output from stored procedures with cx_Oracle

Is there a way in cx_Oracle to capture the stdout output from an oracle stored procedure? These show up when using Oracle's SQL Developer or SQL Plus, but there does not seem to be a way to fetch it ...
2
votes
3answers
214 views

Oracle instant client can't execute sql update

I can connect to a Oracle 10g release 2 server using instant client. Using pyodbc and cx_Oracle. Using either module, I can execute a select query without any problems, but when I try to update a ...
2
votes
1answer
454 views

Deploying cx_Oracle onto various versions of Oracle Client

I have some small python apps that use cx_Oracle to connect to an Oracle database. I deploy these apps by compiling them with py2exe, which works fine in many cases. The problem is, there is no ...
2
votes
2answers
662 views

How do I get cx_Oracle to work on 64-bit Itanium Windows?

I'm running Windows Server 2003 on a 64-bit Itanium server which is also running 64-bit Oracle 10.2, and I'd like to install cx_Oracle for Python 2.5. I've used cx_Oracle before many times on both ...
2
votes
2answers
445 views

Changing schema using cx_Oracle

Well, I hope this is not a duplicate, the search did not yield anything useful. I have been toying with cx_Oracle for the past few days, installing and using it. Everything went fine until I reached ...
2
votes
1answer
494 views

Return the number of affected rows from a MERGE with cx_oracle

How can you get the number of affected rows from executing a "MERGE INTO..." sql command within CX_Oracle? When ever I execute the MERGE SQL on cx_oracle, I get a cursor.rowcount of -1. Is there a ...
2
votes
3answers
229 views

What is the difference between converting to hex on the client end and using rawtohex?

I have a table that's created like this: CREATE TABLE bin_test (id INTEGER PRIMARY KEY, b BLOB) Using Python and cx_Oracle, if I do this: value = "\xff\x00\xff\x00" #The string represented in hex ...
2
votes
3answers
849 views

cx_Oracle And User Defined Types

Does anyone know an easier way to work with user defined types in Oracle using cx_Oracle? For example, if I have these two types: CREATE type my_type as object( component varchar2(30) ,key ...
2
votes
1answer
893 views

Getting column info in cx_oracle when table is empty?

I am working on an a handler for the python logging module. That essentially logs to an oracle database. I am using cx_oracle, and something i don't know how to get is the column values when the ...
1
vote
0answers
19 views

Using cx_Oracle callfunc to get oracle objects

I'm trying to call an oracle pl/sql function returning an oracle object by using cx_Oracle's cursor.callfunc() but cannot bring it to work and found no help neither in the documentation nor on the ...
1
vote
1answer
45 views

How do I run non query sql commands using cx_Oracle?

I am trying to run these commands using cx_oracle: begin add_command_pkg.add_command ( command_id => 7, expiry_time => sysdate + 7 ); add_command_pkg.add_command ( command_id ...
1
vote
1answer
25 views

python and cx_Oracle - dynamic cursor.setinputsizes

I'm using cx_Oracle to select rows from one database and then insert those rows to a table in another database. The 2nd table's columns match the first select. So I have (simplified): ...
1
vote
1answer
130 views

cx_Oracle on Mac OS Lion

I made steps as described here http://www.cs.utexas.edu/~mitra/csSpring2011/cs327/cx_mac.html and installed cx_Oracle on Mac OS Lion x64 import cx_Oracle – done successfully But when I try to use ...
1
vote
1answer
249 views

cx_Oracle.so: undefined symbol:PyUnicodeUCS2_AsEncodedString

I am having issiues installing cx_oracle. I have installed oracle instantclient and cx_oracle oracle packages ones installed i am getting this error while importing cx_oracle. i am running ubuntu ...
1
vote
1answer
47 views

I have an Oracle Stack trace file Python cx_Oracle

My python application is dying, this oracle trace file is being generated. I am using cx_Oracle, how do I go about using this trace file to resolve this crash? ora_18225_139690296567552.trc ...
1
vote
2answers
140 views

Exception binding variables with cx_Oracle in python

Okay, so I'm connected to an oracle database in python 2.7 and cx_Oracle 5.1 compiled against the instant client 11.2. I've got a cursor to the database and running SQL is not an issue, except this: ...
1
vote
0answers
184 views

cx_Oracle executemany with a CLOB

I am attempting to parse multiple CSVs and insert their data into tables using cx_Oracle. I have no problem inserting into the tables using execute but when I try the same procedure with executemany I ...
1
vote
1answer
314 views

Setting up Cx_Oracle

I am running ... SQL*Plus: Release 9.2.X.X.X - Production on Wed Jun 22 13:02:14 2011 Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved. Connected to: Oracle Database 10g ...
1
vote
1answer
247 views

executemany of CLOB elements on cx_Oracle

I have a function that inserts a chunk of data into oracle database. I'm trying to achieve this by using executemany. My function looks like this: def InsertChunk(self): try: if ...
1
vote
1answer
108 views

What is the correct way to retrieve timezone aware datetime objects from a cx_oracle cursor?

cx_oracle returns datetime instances for columns of the TIMESTAMP or TIMESTAMP WITH TIME ZONE types, but these datetime instances are not timezone aware. For example: SELECT column_name, data_type ...
1
vote
1answer
233 views

import cx_oracle fails when python script is started as win32 service

I have written a python script that should run as a windows service by subclassing the win32serviceutil.ServiceFramework. Within the script the cx_oracle module is used. When I run the service in ...
1
vote
1answer
152 views

Overriding a python instance method in a external library

I've written a context manager for a database connection. I would like to override a method from an external class ('execute' in cx_oracle.Cursor), to drop any extraneous bind variables before passing ...
1
vote
2answers
375 views

INSERT not working in cx_oracle when used with execute. How to get it working?

I am new to cx_oracle. I have established a connection and I am able to create and drop a table using execute. Where I am failing is when I try to use "INSERT INTO ..." in execute. It doesn't show ...
1
vote
1answer
807 views

Python cx_Oracle ImportError: DLL load failed

Im attempting to import cx_Oracle and it outputs the error ImportError: DLL load failed: The specified module could not be found Im doing this on a win 2003 server with python 2.7 and cx_Oracle ...
1
vote
0answers
393 views

Dll load failed For Cx_oracle

I'm using python 3.1.2. I've download cx_Oracle (Windows x86 Installer (Oracle 10g, Python 3.1) ). The oracle version I'm using is Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi. ...
1
vote
1answer
169 views

Closing a cx_Oracle Connection While Allowing for a Down Database

The following cx_Oracle code works fine when the database is up: #!C:\Python27 import cx_Oracle try: conn = cx_Oracle.connect("scott/tiger@oracle") try: curs = conn.cursor() ...

1 2