[cx-oracle-users] Segmentation fault with custom cursor
Brought to you by:
atuining
From: <wa...@li...> - 2004-07-22 10:32:40
|
I'm having problems with implementing custom cursors. A minimal failing example is this: from cx_Oracle import * class Cursor2(Cursor): pass class Connection2(Connection): def cursor(self): return Cursor2() db = Connection2("...") c = db.cursor() Executing this gives me a Segmentation fault. I'm on Linux using cx_Oracle 4.0.1 with Anthony's patch for the NVARCHAR/UTF16 problem. Bye, Walter Dörwald |