Re: [cx-oracle-users] setinputsizes problem?
Brought to you by:
atuining
From: Amaury F. d'A. <ama...@gm...> - 2010-07-03 19:28:47
|
Hi, 2010/7/3 Jason Boorn <jb...@gm...>: [...] > destination_cursor.setinputsizes(inputsizes) [...] > I get the following error: > Could not insert: expecting an array of two elements [type, numelems] You pass only one argument to cursor.setinputsize; this will define only one variable, this is certainly not what you want. Try with destination_cursor.setinputsizes(*inputsizes) to define multiple variables. -- Amaury Forgeot d'Arc |