mark dixon 1 21 – databases: multiple tables and writing data

Post on 05-Jan-2016

222 Views

Category:

Documents

0 Downloads

Preview:

Click to see full reader

TRANSCRIPT

Mark Dixon 1

21 – Databases: Multiple Tablesand Writing Data

Mark Dixon 2

Questions: Databases• How many records are in the following table?• How many fields does the following table have?

64

CountryName Population Land Mass Continent

UK 60776238 241590 EuropeSpain 40448191 499542 EuropeGermany 82400996 349223 EuropeEgypt 80335036 995450 AfricaKenya 36913721 569250 AfricaChina 1321851888 9326410 Asia

Mark Dixon 3

Questions: SQL• Write an SQL statement to display the name and

land mass of all countries in Africa.

SELECT Name, Land MassFROM Country WHERE Continent = 'Africa';

CountryName Population Land Mass Continent

UK 60776238 241590 EuropeSpain 40448191 499542 EuropeGermany 82400996 349223 EuropeEgypt 80335036 995450 AfricaKenya 36913721 569250 AfricaChina 1321851888 9326410 Asia

Mark Dixon 4

Questions: HTML in VB• Are these correct (assume variables and

fields exist)?

f = f + r("Description")

h = h + r("<br />Name")

a = "<p>" + a "</p>"

html = html + <img src=face.gif />

h = "<table>" + h + "</table>"

Mark Dixon 5

Advice• Don’t

– put anything on desktop– Especially database

Mark Dixon 6

Session Aims & Objectives• Aims

– To deal with multiple tables– To write data to databases

• Objectives,by end of this week’s sessions, you should be able to:

– identify a suitable primary key for a table– identify duplicated data in a single table– split that table to reduce data redundancy,

using a suitable foreign key– generate SQL statements to (temporarily)

join tables, and use these in your code– use SQL to write data into database

Mark Dixon 7

Data Duplication• Look for repeating data:

Track Title Artist Name Country

Paranoid Black Sabbath UK

Falling in Love Aerosmith US

Pink Aerosmith US

Love in an Elevator Aerosmith US

Smooth Criminal Alien Ant Farm US

Meaning of Life Disturbed US

The Game Disturbed US

Voices Disturbed US

Down with the Sickness Disturbed US

Track

Mark Dixon 8

Problem: Data Duplication• takes up lots of space

• can become inconsistent (misspellings)

• difficult to change (need to change each instance)

• difficult to search (misspellings)

Mark Dixon 9

Solution: Normalisation• Part of database design

• Process of breaking data down (splitting)

• Codd– 7 stages of normalisation

• Mathematical• Difficult to apply stages• Most professionals do it instinctively

Mark Dixon 10

Relations (tables)

Track Title

Paranoid

Falling in Love Aerosmith US

Pink Aerosmith US

Love in an Elevator Aerosmith US

Smooth Criminal Alien Ant Farm US

Meaning of Life Disturbed US

The Game Disturbed US

Voices Disturbed US

Down with the Sickness Disturbed US

Track

Artist Name Country

Black Sabbath UK

Mark Dixon 11

Relations (tables)

Track Title

Paranoid

Falling in Love Aerosmith US

Pink Aerosmith US

Love in an Elevator Aerosmith US

Smooth Criminal Alien Ant Farm US

Meaning of Life Disturbed US

The Game Disturbed US

Voices Disturbed US

Down with the Sickness Disturbed US

Track

Artist ID

1

Artist

Artist Name Country

Black Sabbath UK

ID Artist Name Country

1 Black Sabbath UK

Mark Dixon 12

Relations (tables)

Track Title

Paranoid

Falling in Love

Pink Aerosmith US

Love in an Elevator Aerosmith US

Smooth Criminal Alien Ant Farm US

Meaning of Life Disturbed US

The Game Disturbed US

Voices Disturbed US

Down with the Sickness Disturbed US

Track

Artist ID

1

Artist

ID Artist Name Country

1 Black Sabbath UKAerosmith US

ID Artist Name Country

1 Black Sabbath UK

2 Aerosmith US2

Mark Dixon 13

Relations (tables)

Track Title

Paranoid

Falling in Love

Pink

Love in an Elevator Aerosmith US

Smooth Criminal Alien Ant Farm US

Meaning of Life Disturbed US

The Game Disturbed US

Voices Disturbed US

Down with the Sickness Disturbed US

Track

Artist ID

1

2

2

Artist

ID Artist Name Country

1 Black Sabbath UK

2 Aerosmith US

Mark Dixon 14

Relations (tables)

Track Title

Paranoid

Falling in Love

Pink

Love in an Elevator

Smooth Criminal Alien Ant Farm US

Meaning of Life Disturbed US

The Game Disturbed US

Voices Disturbed US

Down with the Sickness Disturbed US

Track

Artist ID

1

2

2

2

Artist

ID Artist Name Country

1 Black Sabbath UK

2 Aerosmith US

Mark Dixon 15

Relations (tables)

Track Title

Paranoid

Falling in Love

Pink

Love in an Elevator

Smooth Criminal

Meaning of Life Disturbed US

The Game Disturbed US

Voices Disturbed US

Down with the Sickness Disturbed US

Track

Artist ID

1

2

2

2

3

Artist

ID Artist Name Country

1 Black Sabbath UK

2 Aerosmith US

3 Alien Ant Farm US

Mark Dixon 16

Relations (tables)

Track Title

Paranoid

Falling in Love

Pink

Love in an Elevator

Smooth Criminal

Meaning of Life

The Game Disturbed US

Voices Disturbed US

Down with the Sickness Disturbed US

Track

Artist ID

1

2

2

2

3

4

Artist

ID Artist Name Country

1 Black Sabbath UK

2 Aerosmith US

3 Alien Ant Farm US

4 Disturbed US

Mark Dixon 17

Relations (tables)

Track Title

Paranoid

Falling in Love

Pink

Love in an Elevator

Smooth Criminal

Meaning of Life

The Game

Voices Disturbed US

Down with the Sickness Disturbed US

Track

Artist ID

1

2

2

2

3

4

4

Artist

ID Artist Name Country

1 Black Sabbath UK

2 Aerosmith US

3 Alien Ant Farm US

4 Disturbed US

Mark Dixon 18

Relations (tables)

Track Title

Paranoid

Falling in Love

Pink

Love in an Elevator

Smooth Criminal

Meaning of Life

The Game

Voices

Down with the Sickness Disturbed US

Track

Artist ID

1

2

2

2

3

4

4

4

Artist

ID Artist Name Country

1 Black Sabbath UK

2 Aerosmith US

3 Alien Ant Farm US

4 Disturbed US

Mark Dixon 19

Relations (tables)

Track Title Artist ID

Paranoid 1

Falling in Love 2

Pink 2

Love in an Elevator 2

Smooth Criminal 3

Meaning of Life 4

The Game 4

Voices 4

Down with the Sickness 4

Track Artist

ID Artist Name Country

1 Black Sabbath UK

2 Aerosmith US

3 Alien Ant Farm US

4 Disturbed US

PrimaryKey

ForeignKey

Mark Dixon 20

Question: Keys

Name Population Land Mass ContIDUK 60776238 241590 1

Spain 40448191 499542 1Germany 82400996 349223 1

Egypt 80335036 995450 2Kenya 36913721 569250 2China 1321851888 9326410 3

Country Continent

ID Name

1 Europe

2 Africa

3 Asia

• Name a Primary Key

• Name a Foreign Key

ID in the Continent table

ContID in the Country table

Mark Dixon 21

People Database (with Hobbies)ID Surname Forenames Phone email

1 Dixon Mark 01752 232556 mark.dixon@plymouth.ac.uk

2 Smith John 01752 111111 john.smith@john.smith.ac.uk

3 Jones Sally 01752 888888 sally.jones@sally.jones.com

4 Bloggs Fred 01752 123123 fred.bloggs@aaaaaa.com

5 Anderson Genny 01752 987987 genny@bbbb.cccc.com

HobbyID Description PersonID

1 Archery 1

2 Herpetology 1

3 Music 1

4 Football 2

5 Rugby 2

6 Hitting people with swords 1

Hobby

Person

Mark Dixon 22

Entity-relationship diagrams• Each table in db

– stores details of entity• shown as rectangular box

•Relationships between tables

–represent relationships between entities

•shown as line between entities (boxes)

Person Hobby

Mark Dixon 23

Relationship Types• One-to-one

• One-to-many

• Many-to-one

• Many-to-many– (can't be implemented in relational database)

A B

A B

A B

A B

Mark Dixon 24

Question: Which relationship type?

ID Surname Forenames Phone email

1 Dixon Mark 01752 232556 mark.dixon@plymouth.ac.uk

2 Smith John 01752 111111 john.smith@john.smith.ac.uk

3 Jones Sally 01752 888888 sally.jones@sally.jones.com

4 Bloggs Fred 01752 123123 fred.bloggs@aaaaaa.com

5 Anderson Genny 01752 987987 genny@bbbb.cccc.com

HobbyID Description PersonID

1 Archery 1

2 Herpetology 1

3 Music 1

4 Football 2

5 Rugby 2

6 Hitting people with swords 1

Hobby

Person

Person

Hobby

Mark Dixon 25

SQL: Joining tables

SELECT * FROM Person, Hobby;

Two tables

Cartesian set(all recordcombinations):

ID Surname Forenames Phone email HobbyID Description PersonID1 Dixon Mark 01752 232556 mark.dixon@plymouth.ac.uk 7 Archery 12 Smith John 01752 111111 john.smith@john.smith.ac.uk 7 Archery 13 Jones Sally 01752 888888 sally.jones@sally.jones.com 7 Archery 14 Bloggs Fred 01752 123123 fred.bloggs@aaaaaa.com 7 Archery 15 Anderson Genny 01752 987987 genny@bbbb.cccc.com 7 Archery 11 Dixon Mark 01752 232556 mark.dixon@plymouth.ac.uk 8 Herpetology 12 Smith John 01752 111111 john.smith@john.smith.ac.uk 8 Herpetology 13 Jones Sally 01752 888888 sally.jones@sally.jones.com 8 Herpetology 14 Bloggs Fred 01752 123123 fred.bloggs@aaaaaa.com 8 Herpetology 15 Anderson Genny 01752 987987 genny@bbbb.cccc.com 8 Herpetology 11 Dixon Mark 01752 232556 mark.dixon@plymouth.ac.uk 9 Music 12 Smith John 01752 111111 john.smith@john.smith.ac.uk 9 Music 13 Jones Sally 01752 888888 sally.jones@sally.jones.com 9 Music 14 Bloggs Fred 01752 123123 fred.bloggs@aaaaaa.com 9 Music 15 Anderson Genny 01752 987987 genny@bbbb.cccc.com 9 Music 11 Dixon Mark 01752 232556 mark.dixon@plymouth.ac.uk 10 Football 22 Smith John 01752 111111 john.smith@john.smith.ac.uk 10 Football 23 Jones Sally 01752 888888 sally.jones@sally.jones.com 10 Football 24 Bloggs Fred 01752 123123 fred.bloggs@aaaaaa.com 10 Football 25 Anderson Genny 01752 987987 genny@bbbb.cccc.com 10 Football 21 Dixon Mark 01752 232556 mark.dixon@plymouth.ac.uk 11 Rugby 22 Smith John 01752 111111 john.smith@john.smith.ac.uk 11 Rugby 23 Jones Sally 01752 888888 sally.jones@sally.jones.com 11 Rugby 24 Bloggs Fred 01752 123123 fred.bloggs@aaaaaa.com 11 Rugby 25 Anderson Genny 01752 987987 genny@bbbb.cccc.com 11 Rugby 21 Dixon Mark 01752 232556 mark.dixon@plymouth.ac.uk 12 Hitting people with swords 12 Smith John 01752 111111 john.smith@john.smith.ac.uk 12 Hitting people with swords 13 Jones Sally 01752 888888 sally.jones@sally.jones.com 12 Hitting people with swords 14 Bloggs Fred 01752 123123 fred.bloggs@aaaaaa.com 12 Hitting people with swords 15 Anderson Genny 01752 987987 genny@bbbb.cccc.com 12 Hitting people with swords 1

Mark Dixon 26

SQL: Joining tables

SELECT *FROM Person, HobbyWHERE Person.ID = Hobby.PersonID;

Two tables

Matching recordsID Surname Forenames Phone email HobbyID Description PersonID

1 Dixon Mark 01752 232556 mark.dixon@plymouth.ac.uk 1 Archery 1

1 Dixon Mark 01752 232556 mark.dixon@plymouth.ac.uk 2 Herpetology 1

1 Dixon Mark 01752 232556 mark.dixon@plymouth.ac.uk 3 Music 1

1 Dixon Mark 01752 232556 mark.dixon@plymouth.ac.uk 6 Hitting people with swords 1

2 Smith John 01752 111111 john.smith@john.smith.ac.uk 4 Football 2

2 Smith John 01752 111111 john.smith@john.smith.ac.uk 5 Rugby 2

Mark Dixon 27

SQL: Joining tables

ID Surname

1 Dixon

1 Dixon

1 Dixon

1 Dixon

2 Smith

2 Smith

SELECT ID, SurnameFROM Person, HobbyWHERE Person.ID = Hobby.PersonID;

Mark Dixon 28

Question: SQL Joining Tables• Write an SQL query to join the following:

Track Title Artist ID

Paranoid 1

Falling in Love 2

Pink 2

Love in an Elevator 2

Smooth Criminal 3

Meaning of Life 4

The Game 4

Voices 4

Down with the Sickness 4

Track Artist

ID Artist Name Country

1 Black Sabbath UK

2 Aerosmith US

3 Alien Ant Farm US

4 Disturbed US

Mark Dixon 29

SQL: More• Loads more:

– group by– aggregate functions: average, count– inner joins– outer joins (left and right)

• Have a look at:– http://www.w3schools.com/sql/sql_join.asp

Mark Dixon 30

Example: Person v1 (Specification)

• User requirement:– Display people's details from database online– need 2 pages:

smithjonesdixon

list of people

jonessally

person's details

Mark Dixon 31

Example: PeopleList.aspx v1<%@ Page Language="VB" %><%@ Import Namespace="System.Data.OleDB" %><script runat="server">

Sub Page_Load() Dim cs As String = "Provider=Microsoft.ACE.OLEDB.12.0;" + _ "Data Source=" + Server.MapPath("People.accdb") + ";" Dim cn As New OleDbConnection(cs) Dim cmd As OleDbCommand Dim r As OleDbDataReader Dim s As String cmd = New OleDbCommand("SELECT * FROM Person;", cn) cn.Open() r = cmd.ExecuteReader() s = "" Do While r.Read() s = s & r("Surname") & "<br />" Loop cn.Close parData.InnerHtml = s End Sub</script>

<html> <head><title></title></head> <body> <p id="parData" runat="server"></p> </body></html>

Mark Dixon 32

Example: PeopleList.aspx v2<%@ Page Language="VB" %><%@ Import Namespace="System.Data.OleDB" %><script runat="server">

Sub Page_Load() Dim cs As String = "Provider=Microsoft.ACE.OLEDB.12.0;" + _ "Data Source=" + Server.MapPath("People.accdb") + ";" Dim cn As New OleDbConnection(cs) Dim cmd As OleDbCommand Dim r As OleDbDataReader Dim s As String cmd = New OleDbCommand("SELECT * FROM Person;", cn) cn.Open() r = cmd.ExecuteReader() s = "" Do While r.Read() s = s & "<a href='Person.aspx?id=" & r("ID") & "'>" s = s & r("Surname") & "</a><br />" Loop cn.Close parData.InnerHtml = s End Sub</script>

<html> <head><title></title></head> <body> <p id="parData" runat="server"></p> </body></html>

now links

Mark Dixon 33

Example: Person.aspx v2<%@ Page Language="VB" %><%@ Import Namespace="System.Data.OleDB" %><script runat="server">

Sub Page_Load() Dim cs As String = "Provider=Microsoft.ACE.OLEDB.12.0;" + _ "Data Source=" + Server.MapPath("People.accdb") + ";" Dim sql As String Dim cn As New OleDbConnection(cs) Dim cmd As OleDbCommand Dim r As OleDbDataReader Dim s As String sql = "SELECT * FROM Person WHERE id=" & Request.QueryString("id") cmd = New OleDbCommand(sql, cn) cn.Open() r = cmd.ExecuteReader() s = "" If r.Read() Then txtSurname.Value = r("Surname") End If cn.Close() End Sub</script>

<html> <head><title></title></head> <body> <a href="PeopleList2.aspx">Back to People List</a><br /> <form runat="server"> Surname: <input id="txtSurname" runat="server" /><br /> <input id="btnSave" type="submit" value="Save" runat="server" /> </form> </body></html>

reads querystring(from previous page)

displays data forselected record only

Mark Dixon 34

Example: Person v2 (Specification)

• User requirement:Display person’s details from database online

– Change surname and save to database

Mark Dixon 35

Changing Data• SQL

– INSERT: inserts a new recordINSERT INTO Person (Surname, Age) VALUES ('Smith', 21);

– UPDATE: makes changes to specified recordUPDATE Person Set Surname = 'Smith', Age = 21 WHERE id = 14;

– DELETE: deletes specified recordDELETE FROM Person WHERE id = 14

Mark Dixon 36

WARNING!!• All changes permanent (no undo)

• WHERE clause is CRITICAL

DELETE FROM Person;

Will delete ALL records in table

Mark Dixon 37

Example: Person.aspx v3 (error)<%@ Page Language="VB" %><%@ Import Namespace="System.Data.OleDB" %><script runat="server">Dim cs As String = "Provider=Microsoft.ACE.OLEDB.12.0;" + _ "Data Source=" + Server.MapPath("People.accdb") + ";"Dim cn As New OleDbConnection(cs)

Sub Page_Load() Dim sql As String Dim cmd As OleDbCommand Dim r As OleDbDataReader sql = "SELECT * FROM Person WHERE id=" & Request.QueryString("id") cmd = New OleDbCommand(sql, cn) cn.Open() r = cmd.ExecuteReader() If r.Read() Then txtSurname.Value = r("Surname") End If cn.Close() End Sub Sub btnSave_Click(s As Object, e As EventArgs) Handles btnSave.ServerClick Dim cmd As OleDbCommand Dim sql As String sql = "UPDATE [Person] " + _ " SET [Surname] = '" + txtSurname.Value + "'" + _ " WHERE id = " & Request.QueryString("id") & ";" cmd = New OleDbCommand(sql, cn) cn.Open() cmd.ExecuteNonQuery() cn.Close End Sub</script>

Save buttonexecutes SQL UPDATE

PROBLEM: Page_Loadre-reads old surname first

Mark Dixon 38

Example: Person.aspx v3b<%@ Page Language="VB" %><%@ Import Namespace="System.Data.OleDB" %><script runat="server">Dim cs As String = "Provider=Microsoft.ACE.OLEDB.12.0;" + _ "Data Source=" + Server.MapPath("People.accdb") + ";"Dim cn As New OleDbConnection(cs)

Sub Page_LoadComplete(s As Object, e As EventArgs) Dim sql As String Dim cmd As OleDbCommand Dim r As OleDbDataReader sql = "SELECT * FROM Person WHERE id=" & Request.QueryString("id") cmd = New OleDbCommand(sql, cn) cn.Open() r = cmd.ExecuteReader() If r.Read() Then txtSurname.Value = r("Surname") End If cn.Close() End Sub Sub btnSave_Click(s As Object, e As EventArgs) Handles btnSave.ServerClick Dim cmd As OleDbCommand Dim sql As String sql = "UPDATE [Person] " + _ " SET [Surname] = '" + txtSurname.Value + "'" + _ " WHERE id = " & Request.QueryString("id") & ";" cmd = New OleDbCommand(sql, cn) cn.Open() cmd.ExecuteNonQuery() cn.Close End Sub</script>

Save buttonexecutes SQL UPDATE

Fix: Use Page_LoadComplete

Mark Dixon 39

Example: Person.aspx v3cDim cs As String = "Provider=Microsoft.ACE.OLEDB.12.0;" + _ "Data Source=" + Server.MapPath("People.accdb") + ";"Dim cn As New OleDbConnection(cs)Dim sql As String

Sub Page_Load() cn.Open() End Sub

Sub btnSave_Click(s As Object, e As EventArgs) Handles btnSave.ServerClick Dim cmd As OleDbCommand sql = "UPDATE [Person] " + _ " SET [Surname] = '" + txtSurname.Value + "'" + _ " WHERE id = " & Request.QueryString("id") & ";" cmd = New OleDbCommand(sql, cn) cmd.ExecuteNonQuery() End Sub

Sub Page_LoadComplete(s As Object, e As EventArgs) Dim cmd As OleDbCommand Dim r As OleDbDataReader sql = "SELECT * FROM Person WHERE id=" & Request.QueryString("id") cmd = New OleDbCommand(sql, cn) r = cmd.ExecuteReader() If r.Read() Then txtSurname.Value = r("Surname") End If cn.Close() End Sub

• Page_Load: first• Click events• Page_LoadComplete:

last

Mark Dixon 40

Tutorial Exercise: Person• Task 1: Get the Person (v1) example from the lecture

working.• Task 2: Modify your code, so that forename is displayed as

well as surname (use a table).• Task 3: Get the Person (v2 and v3) example from the

lecture working.• Task 3: Modify your code, so that a line of text is displayed

confirming that data has been saved.• Task 4: Modify your code, so that an add button is

included, which allows a new record to be added.• Task 5: Modify your code, so that a delete button is

included, which allows the current record to be deleted.

Mark Dixon 41

Tutorial Exercise: Music• Task 1: Create the Music database (from the lecture) with the Track

and Artist tables.• Task 2: Create a web page to display a list of Artists.• Task 4: Change that web page, so that each artist name is a link to

another page, which displays all the tracks by that artist. Hint: Use query strings to pass the artist ID between pages.

Mark Dixon 42

How To: Database Permissions• Generally

– Read: works by default– Write: requires permissions

• Asp.Net pages run as user:– Visual Studio

• Logged in user (few problems)

– IIS• ASP.Net Account• NETWORKSERVICE (Server 2003)• IIS APPPOOL\DefaultAppPool (Windows 7)

Mark Dixon 43

How To: Database Permissions 1• In order for ASP to

write to a database– Need to give write

access account for database file (People.accdb)

• Right-click on file in File Explorer

• Click Properties• Click Security tab• Click Edit button

Mark Dixon 44

How To: Database Permissions 2• Click Add button

Mark Dixon 45

How To: Database Permissions 3• Click Advanced

button

Mark Dixon 46

•ClickFind button

Clickuser

ClickOK button

How To: Database Permissions 4

Mark Dixon 47

How To: Database Permissions 5• Select Internet

Guest Account

• Ensure writeaccess is on

top related