54
Web-Database Integration Week 7 LBSC 690 Information Technology

Web-Database Integration Week 7 LBSC 690 Information Technology

  • View
    216

  • Download
    0

Embed Size (px)

Citation preview

Page 1: Web-Database Integration Week 7 LBSC 690 Information Technology

Web-Database Integration

Week 7

LBSC 690

Information Technology

Page 2: Web-Database Integration Week 7 LBSC 690 Information Technology

Agenda

• Questions

• E-R Modeling

• PHP

• Mythical person-month

• Midterm review

Page 3: Web-Database Integration Week 7 LBSC 690 Information Technology

Key Ideas

• Databases are a good choice when you have– Lots of data– A problem that contains inherent relationships

• Design before you implement– This is just another type of programming– The mythical person-month applies!

• Join is the most important concept– Project and restrict just remove undesired stuff

Page 4: Web-Database Integration Week 7 LBSC 690 Information Technology

Getting Started with E-R Modeling• What questions must you answer?

• What data is needed to generate the answers?– Entities

• Attributes of those entities

– Relationships• Nature of those relationships

• How will the user interact with the system?– Relating the question to the available data

– Expressing the answer in a useful form

Page 5: Web-Database Integration Week 7 LBSC 690 Information Technology

“Project Team” E-R Example

student team

implement-role

member-of

project

creates

manage-role

php-project ajax-project

d

1

1

M

M

1

1

human

client needs1 M

Page 6: Web-Database Integration Week 7 LBSC 690 Information Technology

Components of E-R Diagrams• Entities

– Types • Subtypes (disjoint / overlapping)

– Attributes• Mandatory / optional

– Identifier

• Relationships– Cardinality– Existence– Degree

Page 7: Web-Database Integration Week 7 LBSC 690 Information Technology

Making Tables from E-R Diagrams

• Pick a primary key for each entity

• Build the tables– One per entity– Plus one per M:M relationship– Choose terse but memorable table and field names

• Check for parsimonious representation– Relational “normalization”– Redundant storage of computable values

• Implement using a DBMS

Page 8: Web-Database Integration Week 7 LBSC 690 Information Technology

• 1NF: Single-valued indivisible (atomic) attributes– Split “Doug Oard” to two attributes as (“Doug”, “Oard”)– Model M:M implement-role relationship with a table

• 2NF: Attributes depend on complete primary key– (id, impl-role, name)->(id, name)+(id, impl-role)

• 3NF: Attributes depend directly on primary key– (id, addr, city, state, zip)->(id, addr, zip)+(zip, city, state)

• 4NF: Divide independent M:M tables– (id, role, courses) -> (id, role) + (id, courses)

• 5NF: Don’t enumerate derivable combinations

Page 9: Web-Database Integration Week 7 LBSC 690 Information Technology

Normalized Table Structure

• Persons: id, fname, lname, userid, password

• Contacts: id, ctype, cstring

• Ctlabels: ctype, string

• Students: id, team, mrole

• Iroles: id, irole

• Rlabels: role, string

• Projects: team, client, pstring

Page 10: Web-Database Integration Week 7 LBSC 690 Information Technology

Ways of Generating Web Pages

• Static: Written in a markup language– HTML, XML

• Dynamic: Generated using a program– Common Gateway Interface [Perl] (.cgi)– Java servlets

• Dynamic: Generated from a database– Cold Fusion (.cfm)– PHP (.php)

Page 11: Web-Database Integration Week 7 LBSC 690 Information Technology

Why Database-Generated Pages?

• Remote access to a database – Client does not need the database software

• Serve rapidly changing information– e.g., Airline reservation systems

• Provide multiple “access points”– By subject, by date, by author, …

• Record user responses in the database

Page 12: Web-Database Integration Week 7 LBSC 690 Information Technology

Issues to Consider• Benefits

– Multiple views– Data reuse– Scalable– Access control

• Costs– Formal modeling– Complex (learn, design, implement, debug)– Brittle (relies on multiple communicating servers)– Not crawlable

Page 13: Web-Database Integration Week 7 LBSC 690 Information Technology

Downside

• Brittle– Depends on multiple servers

• Complex– Learning, design, implementation, debugging

• Formally modeled

Page 14: Web-Database Integration Week 7 LBSC 690 Information Technology

Three Ways to Serve Data

WebBrowser

Cold FusionServer

MicrosoftAccessDBMS

MicrosoftWeb Server

.mdb

PHP-enabledWeb Server

mysqlDBMS

mysqldatabase

Page 15: Web-Database Integration Week 7 LBSC 690 Information Technology

Microsoft “Data Access Pages”• Displays database content on Web pages

– Not very useful for changing database content

• Drag-and-drop design in Microsoft Access– “Reports” are designed for printing– “Pages” are designed for the Web

• Requirements:– Microsoft Web Server (not Apache)– IE 5 or higher Web browser (not Firefox)– “Office Web Components” on client machine

• IE 7 fails gracelessly without them!

Page 16: Web-Database Integration Week 7 LBSC 690 Information Technology

Data Access Page ExampleDesignView:

WebPage:

Page 17: Web-Database Integration Week 7 LBSC 690 Information Technology

Database

Server-side Programming

Interchange Language

Client-side Programming

Web Browser

Client Hardware

Server Hardware (PC, Unix)

(MySQL)

(PHP)

(HTML, XML)

(JavaScript)

(IE, Firefox)

(PC)

Bus

ines

sru

les

Inte

ract

ion

Des

ign

Inte

rfac

eD

esig

n

• Relational normalization• Structured programming• Software patterns• Object-oriented design• Functional decomposition

Page 18: Web-Database Integration Week 7 LBSC 690 Information Technology

PHP Programming Environments• You need three systems on the same server:

– PHP (programming language)– MySQL (DBMS)– Apache (Web server)

• WampServer (for PC)– Includes GUI tools

• OTAL (Sun Unix) supports Web deployment– Requires a text editor (e.g., emacs) or FTP

Page 19: Web-Database Integration Week 7 LBSC 690 Information Technology

Making PHP

----- HTML stuff -----

<?php

----- PHP stuff -----

?>

----- HTML stuff -----

http://---URL stuff---/xxxxx.php

Page 20: Web-Database Integration Week 7 LBSC 690 Information Technology

WampServer• Download and install

– From http://www.en.wampserver.com/

• Make sure the server is working– Point a Web browser at http://localhost/– Select phpinfo.php

• Error reporting on? MySQL listed?

• Test the connection to MySQL– Run mysql_test.php (“Resource id #2” indicates ok) <?php

echo mysql_connect(‘localhost’, ‘root’, ‘’);

?>

Page 21: Web-Database Integration Week 7 LBSC 690 Information Technology

Connecting PHP to MySQL

• On WAMP:$dbc=mysql_connect (‘localhost’, ‘userid’, ‘password’);

• On OTAL:$dbc=mysql_connect(‘:/export/software/otal/mysql/run/mysqld.sock’,

‘userid’, ‘password’);

Page 22: Web-Database Integration Week 7 LBSC 690 Information Technology

Create a MySQL Database

• “root” user creates database + grants permissions– Using the WAMP console (or mysql –u root –p)

• root has no initial password; just hit <enter> when asked

– By the system administrator on OTAL (otal.umd.edu) CREATE DATABASE project;

GRANT SELECT, INSERT, UPDATE, DELETE, INDEX, ALTER, CREATE, DROP ON project.* TO ‘foo’@’localhost’ IDENTIFIED BY ‘bar’;

FLUSH PRIVILEGES;

• Start mysql– MySQL console for WAMP, ssh for OTAL mysql –u foo –p bar

• Connect to your database USE project;

Page 23: Web-Database Integration Week 7 LBSC 690 Information Technology

Creating Tables

CREATE TABLE contacts (

ckey MEDIUMINT UNSIGNED NOT NULL AUTO_INCREMENT,

id MEDIUMINT UNSIGNED NOT NULL,

ctype SMALLINT UNSIGNED NOT NULL,

cstring VARCHAR(40) NOT NULL,

FOREIGN KEY (id) REFERENCES persons(id) ON DELETE CASCADE,

FOREIGN KEY (ctype) REFERENCES ctlabels(ctype) ON DELETE RESTRICT,

PRIMARY KEY (ckey)

) ENGINE=INNODB;

To delete: DROP TABLE contacts;

Page 24: Web-Database Integration Week 7 LBSC 690 Information Technology

Populating TablesINSERT INTO ctlabels

(string) VALUES

('primary email'),

('alternate email'),

('home phone'),

('cell phone'),

('work phone'),

('AOL IM'),

('Yahoo Chat'),

('MSN Messenger'),

(‘other’);

To empty a table: DELETE FROM ctlabels;

Page 25: Web-Database Integration Week 7 LBSC 690 Information Technology

“Looking Around” in MySQL

• SHOW DATABASES;

• SHOW TABLES;

• DESCRIBE tablename;

• SELECT * FROM tablename;

Page 26: Web-Database Integration Week 7 LBSC 690 Information Technology

Structured Query Language

DESCRIBE Flight;

Page 27: Web-Database Integration Week 7 LBSC 690 Information Technology

Structured Query Language

SELECT * FROM Flight;

Page 28: Web-Database Integration Week 7 LBSC 690 Information Technology

Structured Query Language

SELECT Company.CompanyName, Company.CompanyPhone, Flight.Origin, Flight.DepartureTime

FROM Flight,Company

WHERE Flight.CompanyName=Company.CompanyName

AND Flight.AvailableSeats>3;

Page 29: Web-Database Integration Week 7 LBSC 690 Information Technology

Statements in PHP• Sequential

{…; …;…;}

Semicolons are required at the end of every statement

• Conditionalif (3==i) {…} else {…}

• Loop for ($i=0; $i<10; $i++) {…}

while ($row=mysql_fetch_array(…)) {…}

foreach ($array as $key => $value) {…}

• Braces are optional around a single statement

Page 30: Web-Database Integration Week 7 LBSC 690 Information Technology

Variables

• Name starts with a $– Case sensitive (assume everything could be!)

• Hold a value– Number (integer, float)– String (double quotes, \ escape character)– TRUE, FLASE– NULL

• Need not be declared (automatically “cast”)

Page 31: Web-Database Integration Week 7 LBSC 690 Information Technology

Operators in PHP

• Arithmetic operators+ - * /

• Logical operators< <= == != >= > && || !

• String operator.

Page 32: Web-Database Integration Week 7 LBSC 690 Information Technology

Arrays in PHP

• A set of key-element pairs$days = array(“Jan”->31, “Feb”=>28, …);

$months = explode(“/”, “Jan/Feb/Mar/…/Dec”);

$_POST

• Each element is accessed by the key– {$days[“Jan”]}– $months[0];

Page 33: Web-Database Integration Week 7 LBSC 690 Information Technology

Functions in PHP

• Declarationfunction multiply($a, $b=3){return $a*$b;}

• Invoking a method$b = multiply($b, 7);

• All variables in a function have only local scope• Unless declared as global in the function

Page 34: Web-Database Integration Week 7 LBSC 690 Information Technology

Using PHP with (X)HTML Forms

<form action=“formResponseDemo.php”, method=“post”>

email: <input type=“text”, name=“email”, value=“<?php echo $email ?>”, size=30 />

<input type=“radio”, name=“sure”, value=“yes” /> Yes

<input type=“radio”, name=“sure”, value=“no” /> No

<input type=“submit”, name=“submit”, value=“Submit” />

<input type=“hidden”, name=“submitted”, value=“TRUE” />

</form>

if (isset($_POST[“submitted”])) {

echo “Your email address is $email.”;

} else {

echo “Error: page reached without proper form submission!”;

}

Page 35: Web-Database Integration Week 7 LBSC 690 Information Technology

<?php # Script 8.1 - mysql_connect.php// Set the database access information as constants.DEFINE ('DB_USER', 'tester');DEFINE ('DB_PASSWORD', 'tester');DEFINE ('DB_HOST', 'localhost');DEFINE ('DB_NAME', 'sitename');

// Make the connection.$dbc = @mysql_connect (DB_HOST, DB_USER, DB_PASSWORD) OR die ('Could not connect to MySQL: ' . mysql_error() );

// Select the database.@mysql_select_db (DB_NAME) OR die ('Could not select the database: ' . mysql_error() );

// Create a function for escaping the data.function escape_data ($data) {

// Address Magic Quotes.if (ini_get('magic_quotes_gpc')) {

$data = stripslashes($data);}// Check for mysql_real_escape_string() support.if (function_exists('mysql_real_escape_string')) {

global $dbc; // Need the connection.$data = mysql_real_escape_string (trim($data), $dbc);

} else {$data = mysql_escape_string (trim($data));

}// Return the escaped value.return $data;

} // End of function.?>

Page 36: Web-Database Integration Week 7 LBSC 690 Information Technology

<?php # login.php// Send NOTHING to the Web browser prior to the session_start() line!// Check if the form has been submitted.

if (isset($_POST['submitted'])) { require_once ('../mysql_connect.php'); // Connect to the db. $errors = array(); // Initialize error array.

// Check for an email address. if (empty($_POST['email'])) { $errors[] = 'You forgot to enter your email address.'; } else { $e = escape_data($_POST['email']); }

// Check for a password. if (empty($_POST['password'])) { $errors[] = 'You forgot to enter your password.'; } else { $p = escape_data($_POST['password']); }

Page 37: Web-Database Integration Week 7 LBSC 690 Information Technology

if (empty($errors)) { // If everything's OK. /* Retrieve the user_id and first_name for that email/password combination. */ $query = "SELECT user_id, first_name FROM users WHERE email='$e' AND password=SHA('$p')"; $result = @mysql_query ($query); // Run the query. $row = mysql_fetch_array ($result, MYSQL_NUM); // Return a record, if applicable. if ($row) { // A record was pulled from the database. // Set the session data & redirect. session_name ('YourVisitID'); session_start(); $_SESSION['user_id'] = $row[0]; $_SESSION['first_name'] = $row[1]; $_SESSION['agent'] = md5($_SERVER['HTTP_USER_AGENT']); // Redirect the user to the loggedin.php page. // Start defining the URL. $url = 'http://' . $_SERVER['HTTP_HOST'] . dirname($_SERVER['PHP_SELF']); // Check for a trailing slash. if ((substr($url, -1) == '/') OR (substr($url, -1) == '\\') ) { $url = substr ($url, 0, -1); // Chop off the slash. } // Add the page. $url .= '/loggedin.php'; header("Location: $url"); exit(); // Quit the script. } else { // No record matched the query. $errors[] = 'The email address and password entered do not match those on file.'; // Public message. $errors[] = mysql_error() . '<br /><br />Query: ' . $query; // Debugging message. } } // End of if (empty($errors)) IF. mysql_close(); // Close the database connection.} else { // Form has not been submitted. $errors = NULL;} // End of the main Submit conditional.

Page 38: Web-Database Integration Week 7 LBSC 690 Information Technology

// Begin the page now.$page_title = 'Login';include ('./includes/header.html');

if (!empty($errors)) { // Print any error messages. echo '<h1 id="mainhead">Error!</h1> <p class="error">The following error(s) occurred:<br />'; foreach ($errors as $msg) { // Print each error. echo " - $msg<br />\n"; } echo '</p><p>Please try again.</p>';}

// Create the form.?>

<h2>Login</h2><form action="login.php" method="post"> <p>Email Address: <input type="text" name="email" size="20" maxlength="40" /> </p> <p>Password: <input type="password" name="password" size="20" maxlength="20" /></p> <p><input type="submit" name="submit" value="Login" /></p> <input type="hidden" name="submitted" value="TRUE" /></form>

<?phpinclude ('./includes/footer.html');?>

Page 39: Web-Database Integration Week 7 LBSC 690 Information Technology

Database

Server-side Programming

Interchange Language

Client-side Programming

Web Browser

Client Hardware

Server Hardware (PC, Unix)

(MySQL)

(PHP)

(HTML, XML)

(JavaScript)

(IE, Firefox)

(PC)

Bus

ines

sru

les

Inte

ract

ion

Des

ign

Inte

rfac

eD

esig

n

• Relational normalization• Structured programming• Software patterns• Object-oriented design• Functional decomposition

Page 40: Web-Database Integration Week 7 LBSC 690 Information Technology
Page 41: Web-Database Integration Week 7 LBSC 690 Information Technology
Page 42: Web-Database Integration Week 7 LBSC 690 Information Technology

Ajax Applications

• Google Maps– http://maps.google.com

• Google Suggest– http://www.google.com/webhp?complete=1&hl=en

• Sajax Tables– http://labs.revision10.com/?p=5

• Sajax– http://www.modernmethod.com/sajax/

Page 43: Web-Database Integration Week 7 LBSC 690 Information Technology

Discussion Point: Mythical Person-Month

• Why is software development different from manufacturing car?

• If it would take one person three months, why does it take four people SIX months?

Page 44: Web-Database Integration Week 7 LBSC 690 Information Technology

Trading People and Months is Hard

• Sequential constraints

• Communication

• Training

Page 45: Web-Database Integration Week 7 LBSC 690 Information Technology

Estimating Completion Time

• Rules of thumb– 1/3 specification– 1/6 coding– 1/2 test planning, testing, and fixing!

• Add time for coding to learn as you go, but don’t take time away from the other parts!– Reread the section on “gutless estimating” if you

are tempted

Page 46: Web-Database Integration Week 7 LBSC 690 Information Technology

The Grand Plan

Networking

HTML/XML

Multimedia

Computers

HCI

Search

CMC

Web

Life Cycle

PolicyDatabases

Programming

Web Databases

Midterm

Project

Final

Quiz

LBSC733

LBSC795

LBSC795

LBSC790

LBSC793

INFM718N

Page 47: Web-Database Integration Week 7 LBSC 690 Information Technology

The Midterm• 1 hour and 15 minutes

– Second half of class: project team meetings

• Quiz/homework should be good preparation– A variety of question types– Some questions will require computer use

• Lots of prior exams are available– Some have solutions available

• Open book/notes/Internet/mind/…– Just don’t get help from another person

Page 48: Web-Database Integration Week 7 LBSC 690 Information Technology

Computer Systems

• Hardware – Types of hardware– Storage hierarchy– Moore’s law

• Software– Types of software– Types of interfaces

Page 49: Web-Database Integration Week 7 LBSC 690 Information Technology

Networks

• Types of Networks– LAN, WAN, Internet, Wireless

• Packet Switching– Ethernet, routers, routing tables

• Layered Architecture and protocols– TCP/UDP– IP address/domain name

Page 50: Web-Database Integration Week 7 LBSC 690 Information Technology

Structured Documents

My Browser

• The Web– HTTP, HTML, URL

• XML

Page 51: Web-Database Integration Week 7 LBSC 690 Information Technology

Multimedia• Compression, compression, compression

– Image: lossy vs loseless– Video: frames are alike– Speech: voice predictable– Music: masking

• Streaming

Media Sever

Internet

Buffer

Page 52: Web-Database Integration Week 7 LBSC 690 Information Technology

Programming

• Programming languages– Machines require specific instructions

– Humans require high-level abstraction

• Control structures– Sequential execution

– Conditional

– Iteration

• Javascript

??

Page 53: Web-Database Integration Week 7 LBSC 690 Information Technology

Databases

• Structured information– Field->record->table->database

– Primary key

• Normalized tables (relations)– Remove redundancy, inconsistency, error

– Easy update, search

• Join links tables together– Through foreign key

• Access provides visual operations

Page 54: Web-Database Integration Week 7 LBSC 690 Information Technology

Web-Database Integration

• Microsoft “Data Access Pages”

• Server-side database integration

• Ajax

• Mythical person-month