Answers for "how to get row count affected by sqllite"

SQL
0

how many rows affected in sqllite

After calling your Cursor.execute*() methods with your UPDATE or INSERT statements you can use Cursor.rowcount to see the # of rows affected by the execute call.

If I had to guess I would say the python lib is calling int sqlite3_changes(sqlite3*) from the C API but I have not looked at the code so I can't say for sure.
Posted by: Guest on September-01-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language