Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Cpython
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sip
Cpython
Commits
e003b64f
Unverified
Commit
e003b64f
authored
Jul 29, 2022
by
Erlend Egeberg Aasland
Committed by
GitHub
Jul 29, 2022
Browse files
Options
Downloads
Patches
Plain Diff
gh-95273: Improve sqlite3 class descriptions (#95379)
Co-authored-by:
CAM Gerlach
<
CAM.Gerlach@Gerlach.CAM
>
parent
f0bf7956
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
Doc/library/sqlite3.rst
+34
-8
34 additions, 8 deletions
Doc/library/sqlite3.rst
with
34 additions
and
8 deletions
Doc/library/sqlite3.rst
+
34
−
8
View file @
e003b64f
...
@@ -426,6 +426,16 @@ Connection Objects
...
@@ -426,6 +426,16 @@ Connection Objects
.. class:: Connection
.. class:: Connection
Each open SQLite database is represented by a ``Connection`` object,
which is created using :func:`sqlite3.connect`.
Their main purpose is creating :class:`Cursor` objects,
and :ref:`sqlite3-controlling-transactions`.
.. seealso::
* :ref:`sqlite3-connection-shortcuts`
* :ref:`sqlite3-connection-context-manager`
An SQLite database connection has the following attributes and methods:
An SQLite database connection has the following attributes and methods:
.. attribute:: isolation_level
.. attribute:: isolation_level
...
@@ -970,6 +980,22 @@ Connection Objects
...
@@ -970,6 +980,22 @@ Connection Objects
Cursor Objects
Cursor Objects
--------------
--------------
A ``Cursor`` object represents a `database cursor`_
which is used to execute SQL statements,
and manage the context of a fetch operation.
Cursors are created using :meth:`Connection.cursor`,
or by using any of the :ref:`connection shortcut methods
<sqlite3-connection-shortcuts>`.
Cursor objects are :term:`iterators <iterator>`,
meaning that if you :meth:`~Cursor.execute` a ``SELECT`` query,
you can simply iterate over the cursor to fetch the resulting rows::
for row in cur.execute("select * from data"):
print(row)
.. _database cursor: https://en.wikipedia.org/wiki/Cursor_(databases)
.. class:: Cursor
.. class:: Cursor
A :class:`Cursor` instance has the following attributes and methods.
A :class:`Cursor` instance has the following attributes and methods.
...
@@ -1135,13 +1161,11 @@ Row Objects
...
@@ -1135,13 +1161,11 @@ Row Objects
A :class:`Row` instance serves as a highly optimized
A :class:`Row` instance serves as a highly optimized
:attr:`~Connection.row_factory` for :class:`Connection` objects.
:attr:`~Connection.row_factory` for :class:`Connection` objects.
It tries to mimic a tuple in most of its features.
It tries to mimic a :class:`tuple` in most of its features,
and supports iteration, :func:`repr`, equality testing, :func:`len`,
and :term:`mapping` access by column name and index.
It supports mapping access by column name and index, iteration,
Two row objects compare equal if have equal columns and equal members.
representation, equality testing and :func:`len`.
If two :class:`Row` objects have exactly the same columns and their
members are equal, they compare equal.
.. method:: keys
.. method:: keys
...
@@ -1640,8 +1664,10 @@ Using :mod:`sqlite3` efficiently
...
@@ -1640,8 +1664,10 @@ Using :mod:`sqlite3` efficiently
--------------------------------
--------------------------------
Using shortcut methods
.. _sqlite3-connection-shortcuts:
^^^^^^^^^^^^^^^^^^^^^^
Using connection shortcut methods
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Using the :meth:`~Connection.execute`,
Using the :meth:`~Connection.execute`,
:meth:`~Connection.executemany`, and :meth:`~Connection.executescript`
:meth:`~Connection.executemany`, and :meth:`~Connection.executescript`
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment