Re: [cx-oracle-users] UPDATE examples
Brought to you by:
atuining
From: Mark H. <mh...@pi...> - 2010-11-18 19:02:27
|
On 11/18/10 10:55 AM, Robert wrote: > How to find out number of rows affected by UPDATE/DELETE... ? > > thanks curs.rowcount should do it: curs.execute('update t1 set a=2') print curs.rowcount There's a few other handy things in the cursor class as well. |