Tutorial 09

Shared by: 86yY1ozE
Categories
Tags
-
Stats
views:
5
posted:
4/20/2012
language:
Latin
pages:
35
Document Sample
scope of work template
							                                               XP
                      TUTORIAL 9




USING XML AS A DATA SOURCE




        New Perspectives on XML, 2nd Edition   1
                     Tutorial 9
                                                             XP
                 USING XML AS A DATA
                       SOURCE
• Data binding is a process by which information in a data
  source is stored as an object in computer memory.
• In this tutorial, the data source is an XML document
  containing information about the employees at Freezing
  Point.
• The Web pages uses placeholders which we will later
  populate with data from two XML documents.




                  New Perspectives on XML, 2nd Edition       2
                               Tutorial 9
                                       XP
USING XML AS A DATA
      SOURCE




New Perspectives on XML, 2nd Edition   3
             Tutorial 9
                        XP
DATA BINDING WITH SEVERAL
        WEB PAGES




   New Perspectives on XML, 2nd Edition   4
                Tutorial 9
                                                        XP
                 FIELDS, RECORDS, AND
                     RECORDSETS

•   Data in a data source is organized by fields,
    records, and recordsets.

•   A field is an element that contains a single item
    of information such as an employees last name.

•   A record is a collection of those fields.

•   A recordset is a collection of records.
                 New Perspectives on XML, 2nd Edition   5
                              Tutorial 9
                                                                    XP
                     FIELDS, RECORDS, AND
                         RECORDSETS
This figure shows fields, records, and a recordset of an XML document




                     New Perspectives on XML, 2nd Edition          6
                                  Tutorial 9
                                                                  XP
                       DATA ISLANDS
• The first step in data binding is to attach the Web page to a
  recordset. The attached data is called a data island. They
  can be either external files or code entered into the HTML
  file.
• The syntax to create a data island from an external file is:

     <xml id=“id” src=“URL”></xml>

• Here, id is the id name assigned to the data island
• URL is the filename and location of the external XML file

                    New Perspectives on XML, 2nd Edition      7
                                 Tutorial 9
                                                        XP
                    DATA ISLANDS

• For example:

   <xml id=“Company” src=“Company.xml”></xml>


• This creates a data island named Company
  attached to Company.xml.



                 New Perspectives on XML, 2nd Edition   8
                              Tutorial 9
                                                                  XP
                       DATA ISLANDS
• To insert a data island directly into the HTML file, use this
  syntax:

   <xml id=“id”>
      xml code
   </xml>

• While this technique can be used, it is not recommended.
  After all, the philosophy of XML is to separate data
  content from data formatting.

                    New Perspectives on XML, 2nd Edition      9
                                 Tutorial 9
                                                        XP
                   DATA ISLANDS

• Data islands are stored by the XML parser as a
  Data Source Object (DSO).

• The DSO takes care of the interaction between the
  Web page and the data island. Also, program code
  can be written to control the actions of the DSO
  such as specifying which records will be displayed
  in the Web page at any one time.

                New Perspectives on XML, 2nd Edition   10
                             Tutorial 9
                                          XP
CREATING A DATA ISLAND




  New Perspectives on XML, 2nd Edition   11
               Tutorial 9
                                 XP
            BINDING AN HTML ELEMENT
                   TO A FIELD
• After the data island has been created, the elements in the
  XML document need to be bound to the HTML file.
• The syntax is:

     <tag datasrc=“#id” datafld=“field”>


• Here, tag is the name of the HTML tag, id is the name of
  the data island, and field is the name of the field in the data
  source.


                     New Perspectives on XML, 2nd Edition       12
                                  Tutorial 9
HTML ELEMENTS THAT XP
SUPPORT DATA BINDING




 New Perspectives on XML, 2nd Edition   13
              Tutorial 9
                     XP
BINDING AN HTML ELEMENT
       TO A FIELD




   New Perspectives on XML, 2nd Edition   14
                Tutorial 9
                                                             XP
                  BINDING TO AN XML
                      ATTRIBUTE

• Attributes, like the Status attribute of the
  Employee element, are treated by the DSO as
  fields. If the attribute is part of a record element, it
  is easy to bind attribute values to a Web page.




                  New Perspectives on XML, 2nd Edition   15
                               Tutorial 9
                                                         XP
                 BINDING TO AN XML
                     ATTRIBUTE

• This code has the ID attribute as part of the
  Employee element:

   <employee ID=“E304”>
     <name>Alice Ashman</name>
     <deptName>Accounting</deptName>
   </employee>



                 New Perspectives on XML, 2nd Edition   16
                              Tutorial 9
                                                              XP
                   BINDING TO AN XML
                       ATTRIBUTE

• And it is interpreted by the DSO as:
   <employee>
     <ID>E304</ID>
     <name>Alice Ashman</name>
     <deptName>Accounting</deptName>
   </employee


• If the attribute is part of a field element, it is still
  treated by the DSO as a field element.
                   New Perspectives on XML, 2nd Edition      17
                                Tutorial 9
                                                          XP
                  BINDING TO AN XML
                      ATTRIBUTE

• The field element containing the attribute becomes
  a record element.

• Remember to reference all character data within
  an element using the $TEXT field.

• It is a good idea not to use attributes in field
  elements if you plan to do data binding.

                  New Perspectives on XML, 2nd Edition   18
                               Tutorial 9
                                        XP
BINDING TO AN XML
    ATTRIBUTE




New Perspectives on XML, 2nd Edition   19
             Tutorial 9
                                                        XP
             THE DATA SOURCE OBJECT


• ActiveX Data Objects (ADO) is a data-access
  technology developed by Microsoft. ADO allows
  you to work with the Data Source Object by
  applying a method or by changing one of the
  properties of the DSO.

• The syntax for applying a method is:
    id.recordset.method()

                New Perspectives on XML, 2nd Edition   20
                             Tutorial 9
                                                        XP
             THE DATA SOURCE OBJECT


• Here, id is the name of the data island in the Web
  document and method is the name of the method
  supported by ADO.

• There are several methods that can be applied to
  DSOs.




                New Perspectives on XML, 2nd Edition   21
                             Tutorial 9
                                         XP
THE DATA SOURCE OBJECT




 New Perspectives on XML, 2nd Edition   22
              Tutorial 9
                                                           XP
               THE DATA SOURCE OBJECT

• For example, if you want to display the last record
  in a DSO whose id is “staffInfo”, run the
  following method:
     staffInfo.recordset.moveLast( )

• The simplest way to run a method is to assign the
  method to the onClick event handler of a <button>
  as shown below:
    <button onClick=“staffInfo.recordset.moveLast( )”>
                   New Perspectives on XML, 2nd Edition   23
                                Tutorial 9
                                                        XP
             THE DATA SOURCE OBJECT


• When the user clicks the button, the browser runs
  the command indicated by the onClick event
  handler, displaying the last record.




                New Perspectives on XML, 2nd Edition   24
                             Tutorial 9
                                         XP
ASSIGNING A RECORDSET
       METHOD




 New Perspectives on XML, 2nd Edition   25
              Tutorial 9
                                                         XP
                          TABLE BINDING

• Using table data binding, each record can be
  displayed in a different row of a table. The
  syntax is:

  <table datasrc=“#id”>
    <tr>
      <td><span datafld=“field1”></span></td>
     <td><span datafld=“field2”></span></td>
    </tr>
  </table>

                 New Perspectives on XML, 2nd Edition   26
                              Tutorial 9
                                                         XP
                          TABLE BINDING


• In the example, id is the name of the data island,
  field1, field2 are the fields from the recordset.




                 New Perspectives on XML, 2nd Edition   27
                              Tutorial 9
                                                           XP
                             TABLE PAGES


• As you add more records to your XML document,
  a table can become long and unwieldy. One way
  to fix this is to give the user the option of limiting
  the number of records displayed at any one time.

• The user can then move forward of backward that
  number of records at a time. This is called paging.


                 New Perspectives on XML, 2nd Edition   28
                              Tutorial 9
                                                        XP
                            TABLE PAGES


• To specify the page size, add the dataPageSize
  attribute to the <table> tag:

    datapagesize=“number”


• number is the number of records you want
  displayed in a single page.


                New Perspectives on XML, 2nd Edition   29
                             Tutorial 9
                                                               XP
              NAVIGATING A TABLE PAGE

• A unique identifier must be assigned to a table using the
  ID attribute before writing a command to navigate a table
  page. The syntax to do this is:

     <table id=“id”>

• Here, id is the name you assign to the table object.
• This is needed because the commands to navigate the table
  pages act on the table itself not the recordset.

                   New Perspectives on XML, 2nd Edition       30
                                Tutorial 9
                                        XP
 TABLE METHODS AND
    PROPERTIES




New Perspectives on XML, 2nd Edition   31
             Tutorial 9
                                                        XP
                 TABLE METHODS AND
                    PROPERTIES

• To run these commands, add the command to the
  onClick event handler of a <button> tag. For
  example, to move to the last page in a data table
  named “StaffTable”, you enter the attribute:

   onClick=“staffTable.lastPage( )”




                New Perspectives on XML, 2nd Edition   32
                             Tutorial 9
                                          XP
HIERARCHICAL RECORDSETS




  New Perspectives on XML, 2nd Edition   33
               Tutorial 9
                                                            XP
             HIERARCHICAL RECORDSETS

• To bind the Employee fields in the previous slide to a
  table, you create a table as follows:
  <table datasrc=“#staffInfo” datafld=“employee”>
    <tr>
      <td><span datafld=“name”></span></td>
      <td><span datafld=“position”></span></td>
      <td><span datafld=“phone”></span></td>
      …
    </tr>
  </table>

                   New Perspectives on XML, 2nd Edition    34
                                Tutorial 9
                                        XP
 THE FINAL WEB PAGE




New Perspectives on XML, 2nd Edition   35
             Tutorial 9

						
Related docs
Other docs by 86yY1ozE
2011 1 parroq familia 11
Views: 1  |  Downloads: 0
Campagnepour Dieu
Views: 6  |  Downloads: 0
carto ??? ????
Views: 11  |  Downloads: 0
03 state laws grid 03 04 02
Views: 1  |  Downloads: 0
March 2nd week
Views: 8  |  Downloads: 0
Organick� Rankinuv cyklus
Views: 27  |  Downloads: 0
Form CP01
Views: 16  |  Downloads: 0
RESPIRATORY PROTECTION
Views: 2  |  Downloads: 0