Presentation is loading. Please wait.

Presentation is loading. Please wait.

Mark Dixon Page 1 5 – Persistent data storage: relational databases.

Similar presentations


Presentation on theme: "Mark Dixon Page 1 5 – Persistent data storage: relational databases."— Presentation transcript:

1 Mark Dixon Page 1 5 – Persistent data storage: relational databases

2 Mark Dixon Page 2 Questions: Session variables Write a line of code to put 31 into a session variable called score. Write code that adds 1 to a variable called g, when a session variable called i is over 25. if (session.getAttribute("i") > 25){ g = g + 1; } Session.setAttribute("score", 31);

3 Mark Dixon Page 3 Admin: SQL Book Gennick J (2006) SQL Pocket Guide (2 nd edition). O'Reilly. ISBN: 0-596-52688-1

4 Mark Dixon Page 4 Session Aims & Objectives Aims –To introduce the fundamental ideas involved in using relational databases for persistent data storage Objectives, by end of this week’s sessions, you should be able to: –create a relational database table –create a web page (JSP) that displays data from a single table in a database –use SQL in your programs to create more complex record-sets

5 Mark Dixon Page 5 Persistent Data Storage So far –programs (web-pages) lose data when closed Not realistic –typically data stored to persistent storage device (e.g. hard disk, key drive, floppy disk, CD-RW) Use either –flat files –database (relational, or object oriented)

6 Mark Dixon Page 6 Example: People (analysis) SPECIFICATION User Requirements –need to have access to people's details Software Requirements –Functional: –Display list of people from a database –Non-functional should be viewable anywhere in the world

7 Mark Dixon Page 7 Record Field Example: People (Database) IDSurnameForenamesPhoneGender 1DixonMark01752 232556Male 2SmithJohn01752 111111Male 3JonesSally01752 888888Female Information organised into –tables (e.g. person) –fields (e.g. phone) –records (e.g. 1 Dixon Mark 01752 232556 …) Person

8 Mark Dixon Page 8 How many fields? How many records? Questions: Music (Database) Track TitleArtist NameCountry ParanoidBlack SabbathUK Falling in LoveAerosmithUS PinkAerosmithUS Love in an ElevatorAerosmithUS Smooth CriminalAlien Ant FarmUS Meaning of LifeDisturbedUS The GameDisturbedUS VoicesDisturbedUS Down with the SicknessDisturbedUS Track 9 3

9 Mark Dixon Page 9 DBMS Database Management Systems (DBMS) provide facilities for: –creating and changing databases add/remove records add/remove fields add/remove data –For example: Microsoft Access dBase Borland Paradox MySQL Microsoft SQL Server Oracle home/small business large scale

10 Mark Dixon Page 10 MS Access Music database

11 Mark Dixon Page 11 Start Menu Control Panel Administrative Tools Data Sources (ODBC) System DSN Add How to: Create Data Source 64bit Problem – No MS Access driver Solution: use C:\Windows\SysWOW64\odbcad32.exe

12 Mark Dixon Page 12 How to: Create Data Source Select MS Access Driver Click Finish

13 Mark Dixon Page 13 How to: Create Data Source Type Data Source Name Click Select button

14 Mark Dixon Page 14 How to: Create Data Source Locate Database Select Database Click OK

15 Mark Dixon Page 15 standard library access relational databases –establish connection to database –initiating queries –create stored (parameterised) queries –The data structure of query result (table) Determining the number of columns Looking up metadata, etc. –located in java.sql package Note: JDBC not officially an acronym –unofficially “Java Database Connectivity” JDBC

16 Mark Dixon Page 16 Example: People <% Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection cn = DriverManager.getConnection("jdbc:odbc:PeopleDB", "", ""); Statement st = cn.createStatement(); ResultSet r = st.executeQuery("SELECT * FROM Person;"); String html = ""; while(r.next()){ html += r.getString("Surname"); } cn.close(); %> Import JDBC class People.jsp

17 Mark Dixon Page 17 Example: People 1 <% Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection cn = DriverManager.getConnection("jdbc:odbc:PeopleDB", "", ""); Statement st = cn.createStatement(); ResultSet r = st.executeQuery("SELECT * FROM Person;"); String html = ""; while(r.next()){ html += r.getString("Surname"); } cn.close(); %> load driver People.jsp

18 Mark Dixon Page 18 Example: People 2 <% Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection cn = DriverManager.getConnection("jdbc:odbc:PeopleDB", "", ""); Statement st = cn.createStatement(); ResultSet r = st.executeQuery("SELECT * FROM Person;"); String html = ""; while(r.next()){ html += r.getString("Surname"); } cn.close(); %> connection People.jsp

19 Mark Dixon Page 19 Example: People 3 <% Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection cn = DriverManager.getConnection("jdbc:odbc:PeopleDB", "", ""); Statement st = cn.createStatement(); ResultSet r = st.executeQuery("SELECT * FROM Person;"); String html = ""; while(r.next()){ html += r.getString("Surname"); } cn.close(); %> statement People.jsp

20 Mark Dixon Page 20 Example: People 4 <% Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection cn = DriverManager.getConnection("jdbc:odbc:PeopleDB", "", ""); Statement st = cn.createStatement(); ResultSet r = st.executeQuery("SELECT * FROM Person;"); String html = ""; while(r.next()){ html += r.getString("Surname"); } cn.close(); %> results People.jsp

21 Mark Dixon Page 21 Example: People 5 <% Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection cn = DriverManager.getConnection("jdbc:odbc:PeopleDB", "", ""); Statement st = cn.createStatement(); ResultSet r = st.executeQuery("SELECT * FROM Person;"); String html = ""; while(r.next()){ html += r.getString("Surname"); } cn.close(); %> process People.jsp

22 Mark Dixon Page 22 Example: People 6 <% Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection cn = DriverManager.getConnection("jdbc:odbc:PeopleDB", "", ""); Statement st = cn.createStatement(); ResultSet r = st.executeQuery("SELECT * FROM Person;"); String html = ""; while(r.next()){ html += r.getString("Surname"); } cn.close(); %> close connection People.jsp

23 Mark Dixon Page 23 Embedding html in java <% Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection cn = DriverManager.getConnection("jdbc:odbc:PeopleDB", "", ""); Statement st = cn.createStatement(); ResultSet r = st.executeQuery("SELECT * FROM Person;"); String html = ""; while(r.next()){ html += r.getString("Surname"); } cn.close(); %> Need data on separate lines html by hand put br tags between data

24 Mark Dixon Page 24 Embedding html in java <% Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection cn = DriverManager.getConnection("jdbc:odbc:PeopleDB", "", ""); Statement st = cn.createStatement(); ResultSet r = st.executeQuery("SELECT * FROM Person;"); String html = ; while(r.next()){ html += r.getString("Surname"); } cn.close(); %> error – java does not understand html

25 Mark Dixon Page 25 Embedding html in java <% Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection cn = DriverManager.getConnection("jdbc:odbc:PeopleDB", "", ""); Statement st = cn.createStatement(); ResultSet r = st.executeQuery("SELECT * FROM Person;"); String html = " " ; while(r.next()){ html += r.getString("Surname"); } cn.close(); %> runs, but in wrong place Need double quotes around tag java sees html as literal string

26 Mark Dixon Page 26 Embedding html in java <% Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection cn = DriverManager.getConnection("jdbc:odbc:PeopleDB", "", ""); Statement st = cn.createStatement(); ResultSet r = st.executeQuery("SELECT * FROM Person;"); String html = ""; while(r.next()){ html += r.getString("Surname") ; } cn.close(); %> Move br tag inside loop. Which bit of code pulls data from database?

27 Mark Dixon Page 27 Embedding html in java <% Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection cn = DriverManager.getConnection("jdbc:odbc:PeopleDB", "", ""); Statement st = cn.createStatement(); ResultSet r = st.executeQuery("SELECT * FROM Person;"); String html = ""; while(r.next()){ html += r.getString("Surname") + " " ; } cn.close(); %> Move br tag inside loop after field data

28 Mark Dixon Page 28 Embedding html in java use view source – see what html has been created:

29 Mark Dixon Page 29 Embedding html in java html must be string (inside double quotes) follows normal pattern for expressions: data operator data operator s = s + " " + r.getString("Name") + " "

30 Mark Dixon Page 30 Embedding html in java (errors) s = s + " " r.getString("Gender") + " " missing operator s = s + r.getString("Height") + " missing double quote s = s + + r.getString("Height") html tag must be inside double quotes s = s + " " + r.getString(" Height") looks for field in database called Height

31 Mark Dixon Page 31 Questions: HTML in java Are these correct (assume variables and fields exist)? g = g + r.getString("Surname ") h = h + " " rs.getString("Width") a = " " + a + " " html = html + " " h = + h + " "   

32 Mark Dixon Page 32 Example: People v2 Display Surname of Male people: <% Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection cn = DriverManager.getConnection("jdbc:odbc:PeopleDB", "", ""); Statement st = cn.createStatement(); ResultSet r = st.executeQuery("SELECT * FROM Person;"); String html = ""; while(r.next()){ if (r.getBoolean("Gender")){ html += r.getString("Surname") + " "; } cn.close(); %>

33 Mark Dixon Page 33 <% Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection cn = DriverManager.getConnection("jdbc:odbc:PeopleDB", "", ""); Statement st = cn.createStatement(); ResultSet r = st.executeQuery(" SELECT * FROM Person WHERE Gender = TRUE; "); String html = ""; while(r.next()){ html += r.getString("Surname") + " "; } cn.close(); %> Example: People v3 Display Surname of Male people: SQL statement

34 Mark Dixon Page 34 SQL: Queries main purpose of databases: –get information back out: searching Structured Query Language –dedicated to interacting with databases 3 rd Generation Language (such as VB, C++) –code describes how to do task 4 th Generation Language (such as SQL) –code describes what to do (not how to do it)

35 Mark Dixon Page 35 SQL: SELECT statement SELECT statement –used to get data –can be embedded in VB, via rs.Open: rs.Open("Person", cs) rs.Open("SELECT * FROM [Person]", cs) all fields

36 Mark Dixon Page 36 SQL: WHERE & ORDER BY WHERE clause –used to restrict data SELECT * FROM [People] WHERE [age]>=18; ORDER BY clause –used to change order of data SELECT * FROM [People] ORDER BY [Surname];

37 Mark Dixon Page 37 SQL: strings (text data) Possible confusion: SELECT * FROM Person WHERE Surname = Smith this will look for field called Smith - gives error need single (SQL) quotes to signify literal text SELECT * FROM Person WHERE Surname = 'Smith'

38 Mark Dixon Page 38 SQL & MS access queries MS Access –Queries: select data from database –really SQL select statements –can use queries to test SQL code MS Access: People.mdb

39 Mark Dixon Page 39 Questions: SQL Create an SQL statement to extract Track Title of records by Aerosmith Track TitleArtist NameCountry ParanoidBlack SabbathUK Falling in LoveAerosmithUS PinkAerosmithUS Love in an ElevatorAerosmithUS Smooth CriminalAlien Ant FarmUS Meaning of LifeDisturbedUS The GameDisturbedUS VoicesDisturbedUS Down with the SicknessDisturbedUS Track SELECT [Track Title] FROM Track WHERE [Artist Name] = 'Aerosmith'; MS Access: Music.mdb

40 Mark Dixon Page 40 Questions: SQL Create an SQL statement to extract all fields of songs by Disturbed, ordered by track name Track TitleArtist NameCountry ParanoidBlack SabbathUK Falling in LoveAerosmithUS PinkAerosmithUS Love in an ElevatorAerosmithUS Smooth CriminalAlien Ant FarmUS Meaning of LifeDisturbedUS The GameDisturbedUS VoicesDisturbedUS Down with the SicknessDisturbedUS Track SELECT * FROM Track WHERE [Artist Name] = 'Disturbed' ORDER BY [Track Title]; MS Access: Music.mdb

41 Mark Dixon Page 41 Example: People v4 User controls what is displayed:

42 Mark Dixon Page 42 SQL: DISTINCT records SELECT [Artist Name] FROM [Track]; Artist Name Black Sabbath Aerosmith Alien Ant Farm Disturbed Artist Name Black Sabbath Aerosmith Alien Ant Farm Disturbed SELECT DISTINCT [Artist Name] FROM [Track];

43 Mark Dixon Page 43 Tutorial Exercise: People Task 1: Create your own People database: –Open MS Access –Create a new database file –Create a new table –Create fields –Enter data Task 2: Get the People v1 example (from the lecture) working. Task 3: Modify your page so that it displays phone number as well as the person's name. Task 4: Modify your page so that it displays the data in an html table. Task 5: Modify your page so that records for males are displayed in blue, and records for females are displayed in red. Task 6: Modify your page as per version 4. You will need to: –Add a form to the page, and three submit buttons –In your code, detect when a button has been pressed (have a look at previous weeks) Task 7: Modify your page so that the user can type a letter, and only names starting with that letter are displayed. Task 8: Modify your page so that the user can type a series of numerical digits and only phone numbers containing those digits are displayed. Task 9: Modify your code so that the user can order the data by surname, or email address (You may want to use a Query String)


Download ppt "Mark Dixon Page 1 5 – Persistent data storage: relational databases."

Similar presentations


Ads by Google