Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

gh-101117: Improve accuracy of sqlite3.Cursor.rowcount docs #104287

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
gh-101117: Improve accuracy of sqlite3.Cursor.rowcount docs
The SQLite C API sqlite3_changes() can only be relied upon when the
statment has been run to completion.
  • Loading branch information
erlend-aasland committed May 8, 2023
commit 8ad00a2c50b69fbf990efa367fdc4345a1cd9086
5 changes: 4 additions & 1 deletion 5 Doc/library/sqlite3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1694,7 +1694,10 @@ Cursor objects
``INSERT``, ``UPDATE``, ``DELETE``, and ``REPLACE`` statements;
is ``-1`` for other statements,
including :abbr:`CTE (Common Table Expression)` queries.
It is only updated by the :meth:`execute` and :meth:`executemany` methods.
It is only updated by the :meth:`execute` and :meth:`executemany` methods,
after the statement has run to completion.
This means that any resulting rows must be fetched in order for
:attr:`!rowcount` to be updated.

.. attribute:: row_factory

Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.