Top Banner
1 SQLite, Firefox, and our small IMDB movie database CS3200 Database design (sp18 s2) Version 1/17/2018
22

SQLite, Firefox, and our small IMDB movie database · How to install SQLite in Firefox Download and install SQLite Managerfor Firefox Click on Add-ons Download and connect to small

Mar 28, 2020

Download

Documents

dariahiddleston
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: SQLite, Firefox, and our small IMDB movie database · How to install SQLite in Firefox Download and install SQLite Managerfor Firefox Click on Add-ons Download and connect to small

1

SQLite,Firefox,andoursmallIMDBmoviedatabase

CS3200 Databasedesign(sp18 s2)Version1/17/2018

Page 2: SQLite, Firefox, and our small IMDB movie database · How to install SQLite in Firefox Download and install SQLite Managerfor Firefox Click on Add-ons Download and connect to small

2

Overview

• Thisdocumentcovers2issues:• HowtoinstallSQLitemanagerinFirefoxbrowser:- SQLiteisthemostwidelyuseddatabase.Forexample,Firefoxusesittostoreyourbookmarks.YouaregoingtoinstallasmalltoolthatallowsyoutoexplicitlycreateandmanageadatabasewithFirefox.

• HowtoloadthesmallIMDBmoviedatabase:• IpostedasmallfilethatcontainssubsetofdatafromtheIMDBmoviewebsite("300– SmallIMDB- SQLite.sql").YouwilluploadthesedataintoyourlocalversionofSQLiteandthenissuesqueriesoverthedatabase.

Page 3: SQLite, Firefox, and our small IMDB movie database · How to install SQLite in Firefox Download and install SQLite Managerfor Firefox Click on Add-ons Download and connect to small

3

1. Installing SQLite Managerin Firefox

Page 4: SQLite, Firefox, and our small IMDB movie database · How to install SQLite in Firefox Download and install SQLite Managerfor Firefox Click on Add-ons Download and connect to small

4

SQLite&SQLiteManger

Background:http://www.sqlite.org/about.htmlhttp://en.wikipedia.org/wiki/SQLite

FirefoxPlug-in:https://addons.mozilla.org/en-us/firefox/addon/sqlite-manager/

Page 5: SQLite, Firefox, and our small IMDB movie database · How to install SQLite in Firefox Download and install SQLite Managerfor Firefox Click on Add-ons Download and connect to small

5

HowtoinstallSQLiteinFirefoxDownloadandinstallSQLiteManager forFirefox

▪ ClickonAdd-ons

DownloadandconnecttosmallIMDB withSQLiteManager

▪ Downloadthefollowingfilefromourclasswebsite:"300- Small_IMDB_for_SQLite.sql"

▪ StartSQLiteMangerandfollowtheinstructionsonthefollowingpages

DownloadandinstallFirefox

▪ DownloadFirefoxfromwww.mozilla.org/firefox

▪ InnewerversionsofFirefox,youhavetopress"ALT"toseethe"menubar".

▪ RestartFirefoxwhentheinstallationisdone

Menubar:pressALT

▪ Searchfor"SQLite"inthetoprightsearchbar

▪ FindandinstallSQLiteManager StartSQLiteManager

Page 6: SQLite, Firefox, and our small IMDB movie database · How to install SQLite in Firefox Download and install SQLite Managerfor Firefox Click on Add-ons Download and connect to small

6

InstallingolderversionofFirefox

• Firefoxversion57("Quantum")hasdisabledsomeexistingadd-ons.WethusneedtouseanolderversionofFirefox(youcanhavemultipleversionsinstalledinparallelonyourmachine;usetheolderversiononlyforclassnotforbrowsingtheweb;onlyoneversioncanbeopenatatime)

• Downloadversion"Firefox56.0.2“fromhttps://support.mozilla.org/en-US/kb/install-older-version-of-firefox

InstallolderversionaccordingtoyourOS

Page 7: SQLite, Firefox, and our small IMDB movie database · How to install SQLite in Firefox Download and install SQLite Managerfor Firefox Click on Add-ons Download and connect to small

7

DisableUpdates

OpenBrowserandClickonoptions

• Weneedtoprevent"auto-update"duringtheinstallation• TurnofftheWiFi/Internetconnection.• OpenoldversionofFirefoxandgotoOptions.

Page 8: SQLite, Firefox, and our small IMDB movie database · How to install SQLite in Firefox Download and install SQLite Managerfor Firefox Click on Add-ons Download and connect to small

8

• ScrolltoFirefoxUpdates

Select"Nevercheckforupdates(notrecommended)"

• CloseFirefoxandturnWifi backon.• Installtheplug-in

Page 9: SQLite, Firefox, and our small IMDB movie database · How to install SQLite in Firefox Download and install SQLite Managerfor Firefox Click on Add-ons Download and connect to small

9

2. Loading the small IMDB movie database

Page 10: SQLite, Firefox, and our small IMDB movie database · How to install SQLite in Firefox Download and install SQLite Managerfor Firefox Click on Add-ons Download and connect to small

10

DownloadthesmallIMDBmoviedatabase

• DownloadthesmallIMDBmoviedatabase"300– SmallIMDB- SQLite.sql"fromoursharedfolder(seeresources)toyourcomputer

Page 11: SQLite, Firefox, and our small IMDB movie database · How to install SQLite in Firefox Download and install SQLite Managerfor Firefox Click on Add-ons Download and connect to small

11

ImportingIMBDmoviedatabase(1/4)

2.Createanewdatabase.Youcancallit"Small_IMDB"

1.StartSQLitemanagerinFirefoxunderTools(press"ALT"toseethemenubar)

Page 12: SQLite, Firefox, and our small IMDB movie database · How to install SQLite in Firefox Download and install SQLite Managerfor Firefox Click on Add-ons Download and connect to small

12

ImportingIMBDmoviedatabase(2/4)1.StarttheImportWizard

3.SelectourSmallIMDBDB

2.ChooseSQLinsteadofCSV

4.OK

Page 13: SQLite, Firefox, and our small IMDB movie database · How to install SQLite in Firefox Download and install SQLite Managerfor Firefox Click on Add-ons Download and connect to small

13

ImportingIMBDmoviedatabase(3/4)

Bypressingok,youareexecuting4407SQLcommands.Howcome?

Page 14: SQLite, Firefox, and our small IMDB movie database · How to install SQLite in Firefox Download and install SQLite Managerfor Firefox Click on Add-ons Download and connect to small

14

ImportingIMBDmoviedatabase(4/4)1.TypeyourqueriesNowyoucanseethe7

newlycreatedtablesinthedatabase

2.ThenHit "Run SQL"or press "Ctrl + F12"(or "Ctrl + ;" on Win)

3.Yourqueryresultswill(hopefully)appear

Page 15: SQLite, Firefox, and our small IMDB movie database · How to install SQLite in Firefox Download and install SQLite Managerfor Firefox Click on Add-ons Download and connect to small

15

-- Findallfilmswhichhave"Bill"inthenameselect*frommoviewherenamelike'%Bill%';

MoreInterestingIMDBqueries

• Executethefollowingtwoqueriesbelow,justcopyandpastetoavoidsyntaxerrors("--"indicatesacomment).Canyoufindalternativeinterestingqueries?

-- Findallactorsandtheirroleswhoplayedinamovie-- with"Bill"inthenameselectfname,lname,role,namefrommovie,cast,actorwheremovie.id ="cast".midand"cast".aid =actor.idandmovie.name like'%Bill%';

Thetablename"cast"requiresquotationmarksasitisaprotectednameinSQLite(butnotinSQLserver)

Page 16: SQLite, Firefox, and our small IMDB movie database · How to install SQLite in Firefox Download and install SQLite Managerfor Firefox Click on Add-ons Download and connect to small

16

ReferentialIntegrity

PName Price Category Manufacturer

Gizmo $19.99 Gadgets GizmoWorks

Powergizmo $29.99 Gadgets GizmoWorks

SingleTouch $149.99 Photography Canon

MultiTouch $203.99 Household Hitachi

Product CompanyCName StockPrice Country

GizmoWorks 25 USA

Canon 65 Japan

Hitachi 15 Japan

Gizmo $14.99 Gadgets Hitachi

SuperTouch $249.99 Computer NewCom

...violatesKeyconstraint

...violatesForeignKeyconstraint

SimplifieddefinitionKeyconstraint:minimalsubsetofthefieldsofarelationisauniqueidentierforatuple.Foreignkey:mustmatchfieldinarelationaltablethatmatchesacandidatekeyofanothertable

Page 17: SQLite, Firefox, and our small IMDB movie database · How to install SQLite in Firefox Download and install SQLite Managerfor Firefox Click on Add-ons Download and connect to small

17

Databaseimport:withSQLstatements

Page 18: SQLite, Firefox, and our small IMDB movie database · How to install SQLite in Firefox Download and install SQLite Managerfor Firefox Click on Add-ons Download and connect to small

18

Databaseimport:withSQLstatements

Page 19: SQLite, Firefox, and our small IMDB movie database · How to install SQLite in Firefox Download and install SQLite Managerfor Firefox Click on Add-ons Download and connect to small

19

WhatistheschemaofthissimplifiedMovieDatabase?

Actoridfirst_namelast_namegender

Movieidnameyearrank

Castaidmidrole

Theschema describesthestructureofadatabase,i.e.tables,attributes,integrityconstraints

Actor(id,first_name,last_name,gender)Cast(aid,mid,role)Movie(id,name,year,rank)

Actor.id,Movie.id=primarykeysofthecorrespondingtablesCast.aid=foreignkeytoActor.idCast.mid=foreignkeystoMovie.id

Tables Attributes

IntegrityConstraints(primarykeyscanalsobeshownbyunderlining)

Page 20: SQLite, Firefox, and our small IMDB movie database · How to install SQLite in Firefox Download and install SQLite Managerfor Firefox Click on Add-ons Download and connect to small

20

MoredetailsonthesmallIMDBschema

ThedatainthisdatabaseisfromtheIMDBwebsite.OursmallIMDBmoviedatabaseconsistsof7tableswiththefollowingschema:

ACTOR(id,fname,lname,gender)MOVIE(id,name,year)DIRECTOR(id,fname,lname)CAST(aid,mid,role)MOVIE_DIRECTOR(did,mid)MOVIE_GENRE(mid,genre)DIRECTOR_GENRE(did,genre,prob)

ThedataweuseforthisclassisonlyasmallsubsetofthelargeIMDBmoviedatabase,thusyoumaynotbeabletofindallyourfavoritemovies.ButyouwillfindsomeQuentinTarantinomovies.Howmany?

Page 21: SQLite, Firefox, and our small IMDB movie database · How to install SQLite in Firefox Download and install SQLite Managerfor Firefox Click on Add-ons Download and connect to small

21

SmallIMDBMovieDatabase:Schema

Actoridfnamelnamegender

Movieidnameyearrank

Directoridfnamelname

Castaidmidrole

Movie_directordidmid

Movie_genremidgenre

Director_genredidgenreprob

Page 22: SQLite, Firefox, and our small IMDB movie database · How to install SQLite in Firefox Download and install SQLite Managerfor Firefox Click on Add-ons Download and connect to small

22

SmallIMDBMovieDatabase:ExampleTuples

id fname lname gender933 Lewis Abernathy M2547 Andrew Adamson M... ... ... ...

Actorid fname lname429 Andrew Adamson2931 Darren Aronofsky... ... ...

Director

did genre prob429 Adventure 0.75429 Music 0.25... ... ...

Director_genre

did mid11652 1092044291 17173... ...

Movie_director

id name year rank10920 Aliens 1986 8.217173 Animal House 1978 7.5... ... ... ...

Movie

aid mid role16844 10920 Lydecker36641 10920 Russ Jorden... ... ...

Castmid genre10920 Sci-Fi10920 Action... ...

Movie_genre