October 2018
Beginner to intermediate
466 pages
12h 2m
English
Let's create a car sales reporter as an example. We can store records of sales in an SQLite database table. SQLite is a simple file-based database engine that allows us to store records using SQL syntax. Python includes SQLite in its standard library, so there are no extra modules required.
We have two common tasks we need to perform:
These seem like quite different tasks, but they have some common features. In both cases, we need to perform the following steps: