8000 gh-95273: Move sqlite3 executemany examples from reference to tutorial by erlend-aasland · Pull Request #95351 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-95273: Move sqlite3 executemany examples from reference to tutorial #95351

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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update Doc/library/sqlite3.rst
Co-authored-by: CAM Gerlach <CAM.Gerlach@Gerlach.CAM>
  • Loading branch information
Erlend Egeberg Aasland and CAM-Gerlach authored Jul 28, 2022
commit a4f6dad24f9cdb2d09a838156179ed990ff70bef
2 changes: 1 addition & 1 deletion Doc/library/sqlite3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ At this point, our database only contains one row::
>>> print(res.fetchone())
(1,)

The result is a one-item :class:`tuple`;
The result is a one-item :class:`tuple`:
one row, with one column.
Now, let us insert three more rows of data,
using :meth:`~Cursor.executemany`::
Expand Down
0