vote up 0 vote down star

Going off the documentation here: http://docs.djangoproject.com/en/dev/topics/db/sql/

>>>cursor = connection.cursor()
>>>cursor.execute("UPDATE bar SET foo = 1 WHERE baz = %s", [self.baz])
>>>print cursor.fetchone()
None

Does anyone know how to return the modified row count?

(NOTE: I've played around with the placement/order of transaction.commit_unless_managed() and cursor.fetchone() (also cursor.fetchall()) and it doesn't seem to make a difference)

Thanks! -Tom

flag

1 Answer

vote up 4 vote down check

An UPDATE statement as you've got in your example doesn't return row results, so fetchone() will always be empty (or might throw an error).

Use cursor.rowcount to get the rows last affected.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.