Re: [cx-oracle-users] How to debug "into" oci?
Brought to you by:
atuining
From: Amaury F. d'A. <ama...@gm...> - 2013-05-30 17:01:34
|
Hi, >From your output: > dataArr: 0xc2000001a8 This seems to be the address on the stack. Is the address still valid when OCIStmtExecute runs? This is important, because this is where the ref cursor will be returned. In cx_Oracle, "dataArr" is always an array of one or more objects. Here the objects are pointers (OCIStmt*), but they still need to be allocated on the heap. -- Amaury Forgeot d'Arc |