[cx-oracle-users] Call setinputsizes() syntax
Brought to you by:
atuining
From: Sergey A. L. <s.l...@sp...> - 2006-11-10 09:10:11
|
I'm using cx_Oracle to insert long data values (as CLOB) into Oracle db. Of course, before executing statement I call setinputsizes() similar as folowing: ... cur.setinputsizes(v1 = cx_Oracle.CLOB); cur.execute("insert ... values(:v1)", v1 = myLargeData); ... But in some cases I need to call setinputsize by passing array as size arguments. What calling syntax of setinputsizes() in this case? |