Py4Inf 14 Database
Py4Inf 14 Database
and SQLite
Charles Severance
https://addons.mozilla.org/en-US/firefox/addon/sqlite-manager/
Relational Databases
Relational databases model data by storing
rows and columns in tables. The power of
the relational database lies in its ability to
efficiently retrieve data from those tables
and in particular where there are multiple
tables and the relationships between those
tables involved in the query.
http://en.wikipedia.org/wiki/Relational_database
Terminology
• Database - contains many tables
• Tuple (or row) - a set of fields that generally represents an “object” like
a person or a music track
Tables /
Relations
Two Roles in Large Projects
• Application Developer - Builds the logic for the application, the look
and feel of the application - monitors the application for problems
SQL
Developer
Database
DBA Tools
Database Administrator (dba)
A database administrator (DBA) is a person responsible for the
design, implementation, maintenance, and repair of an
organization’s database. The role includes the development and
design of database strategies, monitoring and improving database
performance and capacity, and planning for future expansion
requirements. They may also plan, coordinate, and implement
security measures to safeguard the database.
http://en.wikipedia.org/wiki/Database_administrator
Database Model
A database model or database schema is the structure or
format of a database, described in a formal language
supported by the database management system, In other
words, a “database model” is the application of a data
model when used in conjunction with a database
management system.
http://en.wikipedia.org/wiki/Database_model
SQL
• Structured Query Language is the language we use to issue
commands to the database
• Create a table
• Insert data
• Delete data
http://en.wikipedia.org/wiki/SQL
Common Database Systems
• Three Major Database Management Systems in wide use
• Oracle - Large, commercial, enterprise-scale, very very tweakable
• MySql - Simpler but very fast and scalable - commercial open
source
• SqlServer - Very nice - from Microsoft (also Access)
• Many other smaller projects, free and open source
• HSQL, SQLite, Postgress, ...
SQLite Database Manager
• https://addons.mozilla.org/en-US/firefox/addon/sqlite-manager/
http://www.sqlite.org/famous.html
Text
https://addons.mozilla.org/en-US/firefox/addon/sqlite-manager/
Application Structure
End Application SQL Database
User Software Data Model
SQL
Developer
Database
DBA Tools
Start Simple - A Single Table
• Lets make a table of People - with a Name and an Email using the
“wizard” user interface...
Our first table with two columns
Our table with four rows
SQL
http://en.wikipedia.org/wiki/SQL
SQL Insert
• The power comes when we have more than one table and we can
exploit the relationships between the tables
Complex Data Models and
Relationships
http://en.wikipedia.org/wiki/Relational_model
Database Design
• Database design is an art form of its own with particular skills and
experience
• Our goal is to avoid the really bad mistakes and design clean and
easily understood databases
• Drawing a picture of the data objects for our application and then
figuring out how to represent the objects and their relationships
• Basic Rule: Don’t put the same string data in twice - use a
relationship instead
• When there is one thing in the “real world” there should be one copy
of that thing in the database
Track Len Artist Album Genre Rating Count
For each “piece of info”...
• Is the column an object or an Len Album
attribute of another object? Genre
belongs-to
Genre
Representing Relationships
in a Database
We want to keep track of which band is the “creator” of each music track...
What album does this song “belong to”??
http://en.wikipedia.org/wiki/Database_normalization
Integer Reference Pattern
Album
Keys
Finding our way around....
Three Kinds of Keys
• Primary key - generally an integer auto-
increment field Site
id
• Logical key - What the outside world title
uses for lookup
user_id
• Foreign key - generally an integer key ...
pointing to a row in another table
Primary Key Rules
User
Best practices id
login
• Never use your logical key as the primary key
password
name
• Logical keys can and do change, albeit slowly
email
created_at
• Relationships that are based on matching
modified_at
string fields are far less efficient than integers
login_at
performance-wise
Foreign Keys
• A foreign key is when a table has a
column that contains a key which
points to the primary key of another Site
User
table. id
id
title
login
• When all primary keys are integers, user_id
...
then all foreign keys are integers - ...
this is good - very good
belongs-to
Genre
belongs-to Track
Album Title
Rating
Len
Count
Track
id
Album
title
Table id
Primary key rating
Logical key title len
Foreign key
count
album_id
Artist Track
id Album id
name title
id
title rating
len
Table artist_id
Primary key count
Logical key album_id
Foreign key genre_id
Genre
id
Naming FK artist_id is a
convention name
insert into Artist (name) values ('Led Zepplin')
insert into Artist (name) values ('AC/DC')
insert into Genre (name) values ('Rock')
insert into Genre (name) values ('Metal')
insert into Album (title, artist_id) values ('Who Made Who', 2)
insert into Album (title, artist_id) values ('IV', 1)
insert into Track (title, rating, len, count, album_id, genre_id)
values ('Black Dog', 5, 297, 0, 2, 1)
insert into Track (title, rating, len, count, album_id, genre_id)
Track
Album
Genre
Artist
Using Join Across Tables
http://en.wikipedia.org/wiki/Join_(SQL)
Relational Power
• Often when you want some data it comes from a number of tables
linked by these foreign keys
The JOIN Operation
• You must tell the JOIN how to use the keys that make the connection
between the tables using an ON clause
select Album.title, Artist.name from Album join Artist on Album.artist_id = Artist.id
• By normalizing the data and linking it with integer keys, the overall
amount of data which the relational database must scan is far lower
than if the data were simply flattened out
• The key is to have one copy of any data element and use relations
and joins to link the data to multiple places