Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0d812a5

Browse files
gh-94635: Add sqlite3 'Introduction' and 'Tutorial' doc headings (GH-95269) (GH-95304)
(cherry picked from commit 2e35a13) Co-authored-by: Erlend Egeberg Aasland <[email protected]>
1 parent 820904e commit 0d812a5

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

Doc/library/sqlite3.rst

+11-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@
88

99
**Source code:** :source:`Lib/sqlite3/`
1010

11-
--------------
11+
12+
.. _sqlite3-intro:
13+
14+
Introduction
15+
------------
1216

1317
SQLite is a C library that provides a lightweight disk-based database that
1418
doesn't require a separate server process and allows accessing the database
@@ -21,6 +25,12 @@ The sqlite3 module was written by Gerhard Häring. It provides an SQL interface
2125
compliant with the DB-API 2.0 specification described by :pep:`249`, and
2226
requires SQLite 3.7.15 or newer.
2327

28+
29+
.. _sqlite3-tutorial:
30+
31+
Tutorial
32+
--------
33+
2434
To use the module, start by creating a :class:`Connection` object that
2535
represents the database. Here the data will be stored in the
2636
:file:`example.db` file::

0 commit comments

Comments
 (0)