We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00f4b66 commit bbcff41Copy full SHA for bbcff41
src/sql.py
@@ -39,7 +39,7 @@ def execute(self, text, *multiparams, **params):
39
elif result.lastrowid is not None:
40
return result.lastrowid
41
42
- # if DELETE or UPDATE, return number of rows matched
+ # if DELETE or UPDATE (or INSERT without RETURNING), return number of rows matched
43
else:
44
return result.rowcount
45
0 commit comments