When performing SQL statements such as UPDATE
, and INSERT
, the usual .fetch*()
methods on the Cursor
instance obviously don't apply to the number of rows modified.
In the event of executing one of the aforementioned statements, what is the correct way to obtain the corresponding row count in Python, and the corresponding API in the Sqlite3 C interface?