6.8 Creating the Delivery Database

We need to create two tables for this project. The first will store both the history of force sensitive resistor triggers that occur when packages are delivered and removed as well as the value of the exceeded threshold value. The second table will store known tracking numbers of inbound package deliveries and a date delivery field that will contain the time and date of when the delivery was confirmed by the courier. We’ve done something like this before in Chapter 5, Tweeting Bird Feeder, so we’ll apply that same approach to the creation of the package delivery database.

We will first create the database file using the sqlite3 tool, followed by the creation of the two tables within the packagedelivery database. Recall that we need to capture the force sensitive resistor’s trigger actions and record the time and date of when those actions take place. Here’s the structure of the database:

Column Name Data Type Primary Key? Autoinc? Allow Null? Unique?

id

INTEGER

YES

YES

NO

YES

time

DATETIME

NO

NO

NO

NO

event

TEXT

NO

NO

NO

NO

Does this look familiar? Yes, it’s very similar to the structure of the table we created for the Tweeting Bird Feeder project. The general principles are the same: namely, we need to capture an event and record when it occurred in a structured format. This time the event is when a package arrives.

Create this table by submitting the following SQL statement to the sqlite command line:

  ​[~]$ sqlite3 packagedelivery.sqlite​
  ​SQLite version 3.7.6​
  ​Enter ".help" for instructions​
  ​Enter SQL statements terminated with a ";"​
  ​sqlite> CREATE TABLE "deliverystatus" ("id" INTEGER PRIMARY KEY NOT NULL UNIQUE,
  ​"time" DATETIME NOT NULL,"event" TEXT NOT NULL);​

We still need a table called tracking to hold assigned tracking numbers, a description of the package contents, and the package’s delivery status and the date of delivery as confirmed by the courier’s own records. The structure of this table should be as follows:

Column Name Data Type Primary Key? Autoinc? Allow Null? Unique?

id

INTEGER

YES

YES

NO

YES

tracking_number

TEXT

NO

NO

NO

NO

description

TEXT

NO

NO

NO

NO

delivery_status

BOOLEAN

NO

NO

NO

NO

delivery_date

DATETIME

NO

NO

NO

NO

Run the following SQL statement in the sqlite3 command-line tool to create this second table structure in the packagedelivery database:

  ​[~]$ sqlite3 packagedelivery.sqlite​
  ​SQLite version 3.7.6​
  ​Enter ".help" for instructions​
  ​Enter SQL statements terminated with a ";"​
  ​sqlite> CREATE TABLE "tracking" ("id" INTEGER PRIMARY KEY NOT NULL UNIQUE,
  ​"tracking_number" TEXT NOT NULL, "description" TEXT NOT NULL,​
  ​"delivery_status" BOOL NOT NULL, "delivery_date" DATETIME);​

Now that our database tables have been created, we can proceed with the next step of obtaining the Python package dependencies we will use in the delivery processor script.

Programming Your Home
cover.xhtml
f_0000.html
f_0001.html
f_0002.html
f_0003.html
f_0004.html
f_0005.html
f_0006.html
f_0007.html
f_0008.html
f_0009.html
f_0010.html
f_0011.html
f_0012.html
f_0013.html
f_0014.html
f_0015.html
f_0016.html
f_0017.html
f_0018.html
f_0019.html
f_0020.html
f_0021.html
f_0022.html
f_0023.html
f_0024.html
f_0025.html
f_0026.html
f_0027.html
f_0028.html
f_0029.html
f_0030.html
f_0031.html
f_0032.html
f_0033.html
f_0034.html
f_0035.html
f_0036.html
f_0037.html
f_0038.html
f_0039.html
f_0040.html
f_0041.html
f_0042.html
f_0043.html
f_0044.html
f_0045.html
f_0046.html
f_0047.html
f_0048.html
f_0049.html
f_0050.html
f_0051.html
f_0052.html
f_0053.html
f_0054.html
f_0055.html
f_0056.html
f_0057.html
f_0058.html
f_0059.html
f_0060.html
f_0061.html
f_0062.html
f_0063.html
f_0064.html
f_0065.html
f_0066.html
f_0067.html
f_0068.html
f_0069.html
f_0070.html
f_0071.html
f_0072.html
f_0073.html
f_0074.html
f_0075.html
f_0076.html
f_0077.html
f_0078.html
f_0079.html
f_0080.html
f_0081.html
f_0082.html
f_0083.html
f_0084.html
f_0085.html
f_0086.html
f_0087.html
f_0088.html
f_0089.html
f_0090.html
f_0091.html
f_0092.html
f_0093.html
f_0094.html
f_0095.html
f_0096.html
f_0097.html
f_0098.html
f_0099.html
f_0100.html
f_0101.html
f_0102.html
f_0103.html
f_0104.html
f_0105.html
f_0106.html
f_0107.html
f_0108.html
f_0109.html
f_0110.html
f_0111.html
f_0112.html
f_0113.html
f_0114.html
f_0115.html
f_0116.html
f_0117.html
f_0118.html
f_0119.html
f_0120.html
f_0121.html
f_0122.html
f_0123.html
f_0124.html
f_0125.html