8000
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 47e75a0 commit 2e35a13Copy full SHA for 2e35a13
Doc/library/sqlite3.rst
@@ -8,7 +8,11 @@
8
9
**Source code:** :source:`Lib/sqlite3/`
10
11
---------------
+
12
+.. _sqlite3-intro:
13
14
+Introduction
15
+------------
16
17
SQLite is a C library that provides a lightweight disk-based database that
18
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
21
25
compliant with the DB-API 2.0 specification described by :pep:`249`, and
22
26
requires SQLite 3.7.15 or newer.
23
27
28
29
+.. _sqlite3-tutorial:
30
31
+Tutorial
32
+--------
33
24
34
To use the module, start by creating a :class:`Connection` object that
35
represents the database. Here the data will be stored in the
36
:file:`example.db` file::
0 commit comments