
252
Programming Languages for mis
Listing8.19: A Sample XML Document of the XML Data Tree in Figure8.17
<?xml version="1.0" standalone="yes"?>
<RetailCompany>
<Customer
CustomerID="001"
CustomerName="John"
CustomerAddress="30 Westport"></Customer>
<Customer
CustomerID="002"
CustomerName="Anne"
CustomerAddress="20 Northport"></Customer>
<Product
ProductID="A1"
ProductName="Computer"
ProductCost="1000"></Product>
<Product
ProductID="B1"
ProductName="Printer"
ProductCost="100"></Product>
<Product
ProductID="B2"
ProductName="TV"
ProductCost="500"></Product>
<Order
OrderID="0001"
OrderDate="Jan.20"
CustomerID="001">
<Orderline
OrderlineNo="1"
ProductID="B2" ...