Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 820904e commit 0d812a5Copy full SHA for 0d812a5
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