Presentation is loading. Please wait.

Presentation is loading. Please wait.

Computer Science 101 Web Access to Databases Overview of Web Access to Databases.

Similar presentations


Presentation on theme: "Computer Science 101 Web Access to Databases Overview of Web Access to Databases."— Presentation transcript:

1 Computer Science 101 Web Access to Databases Overview of Web Access to Databases

2 Why web access to database? Provides platform independent, remote access to the database –Viewing data –Gathering data –Updating data

3

4 Client-Server Technologies Server: A program that provides services to other programs. It stands ready for requests and when it gets a request, it provides the service. Client: A program requesting a service of a server program. It makes a request, gets the service, and makes use of it.

5 Web Browsers and Servers Web server - This is a program that runs on the internet host computer (server). It takes requests for web pages from clients and delivers the pages back to the client. Web browser - This is a program that runs on your local PC (client). It allows you to request web pages from an internet host.

6 HTML and HTTP HyperText Markup Language - Allows “marking up” a document with tags specifying appearance and structure. HyperText Transfer Protocol - Protocol used for browsers to communicate with web servers. Basically, this consists of “requests” from the browser and “responses” from the server.

7 Typical HTTP Request Browser Web Server HTTP Request http://website/some.html This is a web page Browser interprets HTML and displays page This is a web page Picture HTTP Response

8 Typical HTML Request Client Side (Browser) –Issues request for HTML page –Receives response HTML page –Interprets HTML and creates web page –Displays web page –Work is done here Server Side –Reads request from client –Finds page on server –Sends response page to client –Essentially a file server

9 Scripting Languages Scripting languages - Allow us to add capability to what’s provided by HTML. Allow parts of the page to be built “on the fly”. These scripts are “interpreted” as they run rather than being compiled. Client-side scripts - Script engine on client machine builds parts of page when page is loaded by browser (date is simple example). Javascript is prime example. Server-side scripts - Script engine on server builds parts of page before sending to client (database query results for example). ASP, PHP, JSP, Purl are examples.

10 Server Side Programs Here we have compiled programs that run on the server. Examples could be Java Servlets, ASP.NET languages such as C#

11 Typical Server-Side Request Client Web Server HTTP Request http://stars.aspx Stars John Wayne Meg Ryan Runs script or program on the server Sends response to client Stars John Wayne MegRyan Browser interprets HTML and displays page Gets Page

12 Typical Server-Side Request Client Side (Browser) –Issues request for HTML page –Receives response HTML page –Interprets HTML and creates web page –Displays web page Server Side –Reads request from client –Finds page on server –Runs server-side program needed –Alters HTML file –Sends response page to client

13 Web Access of Database The database resides on the server. Web pages with scripts (or calls to programs) allow the user to send database requests to the server. The server accesses the database to honor the requests. Results can be returned on an html page. Actions can take place on the database.

14 So, what are the pieces we need? Browser software on user machines A machine for the server Web server software on server Database management system on server Scripting/programming language for accessing the database – something supported by the web server

15 Web Applications: 3-Tier Architecture User Interface Application Logic - Program Database User Query SQL Query Results -HTMLQuery results Browser Local Machine Web Server with ASP.NET (C#) Access Database

16 The Big Picture – User Interface User Interface contains web components for user input or for displaying information returned from the database. Two types of components that we will use for displaying data in our examples will be GridViews and DropDownLists. GridViews provide row and column displays. They can be configured for really nice appearance, paging, etc. These components can have associated with them a data source – essentially a database query. We’ll keep it simple.

17 The Big Picture – Middle Tier The middle tier has program code to get users input, connect to the database, present request to the database, get results from the database, send results on to the interface. This is where the server side programming code would come in.

18 The Big Picture – Database Database receives requests in form of SQL statements or in form of request for stored query, performs the query and returns results to middle tier. You are already expert at this part, correct?

19 SQL Injection

20

21 Simple model – retrieving and displaying data from the database For now we are going to consider examples where we want the web page just to display information resulting from a query to the database. We’ll see that Visual Web Developer is very helpful with setting up connections to database, “binding” web components to data sources, etc.

22 Example1 – Faculty Information As a first example, let’s have a web page with a data grid displaying the faculty information – LastName, FirstName, Phone extension, and email address. So we would –Start Visual Web Developer –Open our website –Create a new file (webform)

23 Example1 – Faculty Information (cont.) After placing any heading or whatever on the page, we drag a GridView onto the page from the Data Section of the ToolBox.

24 Example1 - Choosing the data source for the GridView New data source Access Database Browse for database

25 Example1 - Setting up the query

26 Example1 - Testing the query

27 Example1 - View the web page

28 Example1 - Modification Now let’s modify Example1 so that it displays information only for the advisors – department chairs who are not advisors will not appear. This only requires modifying the query associated with the grid view. To get to the query editor –Click on the grid view –Then click on the triangle in the upper right corner of the grid view. –Click on Configure data source

29 Example1 – Modifying the query There is nothing in the Faculty table to indicate whether or not a person is an advisor of one of our class members. We need to use the Student table as well as the Faculty table. SELECT DISTINCT F.LastName, F.FirstName, Phone, Email FROM Faculty F, Students S WHERE FacultyID = AdvisorID

30 Example1 – Modifying the query

31 Example2 - Majors To begin, we’ll have a drop down list with the various majors listed. The process is the same as before, put the drop down list on the page and configure the data source.

32 Data source for drop down list

33 Example2 – Viewing page with drop down list

34 Example2 – GridView with students Now let’s modify Example2 by adding a grid view that displays the names, class year, city, state and advisor fields for the students having the major selected from the drop down list. To have the selection in the drop down list take place, we need to have a way to force the page to “post back” to the server. We’ll use a button for now. It does nothing except that clicking a button causes the form to be “posted” to the server.

35 Example2 – Add GridView and Button

36 Example2 – Data Source for Grid View

37 Example2 – Testing the web page

38 Example2 – Adding advisors last name Now let’s modify the query so that we see the advisor’s last name rather than the advisor’s ID number.

39 Example2 – Testing the page

40 Example2 – Removing the button There is a property of drop down lists called AutoPostBack. The default value for this is false. If this value is set to true, the page will post back to the server whenever an item in the drop down list is selected. In Example2, we can set this property to true and remove the button. In many cases, we do not want that to happen since we may want to make several selection before having the action take place – make selections and then click button.

41 Example3 – Stored query Often it is easier to develop and test queries within the database itself as you did in lab. If we save these queries, they can be used in configuring a data source just like tables.

42 Example3 – Data source


Download ppt "Computer Science 101 Web Access to Databases Overview of Web Access to Databases."

Similar presentations


Ads by Google