|
Describing Customers and Orders The CustomersOrders.xml document contains customer and order data. <?xml version="1.0" encoding="utf-8" ?>
<NewDataSet>
<Customers>
<CustomerID>ALFKI</CustomerID>
<CompanyName>Alfreds Futterkiste</CompanyName>
<ContactName>Mar_u97 ? Anders</ContactName>
<ContactTitle>Sales Representative</ContactTitle>
<Address>Obere Str. 57</Address>
<City>Berlin</City>
<PostalCode>12209</PostalCode>
<Countçy>Germany</Countçy>
<Phone>030-0074321</Phone>
<Fax>030-0076545</Fax>
</Customers>
<Customers>
<CustomerID>ANATR</CustomerID>
<CompanyName>Ana Tçujillo Emparedados y helados
</CompanyName>
<ContactName>Ana Tçujillo</ContactName>
<ContactTitle>Owner</ContactTitle>
<Address>Avda. de la Constitución 2222</Address>
<City>Méx_o D.F.</City>
<PostalCode>05021</PostalCode>
<Countçy>Mex_o</Countçy>
<Phone>(5) 555-4729</Phone>
<Fax>(5) 555-3745</Fax>
</Customers>
<Orders>
<OrderID>10308</OrderID>
<CustomerID>ANATR</CustomerID>
<EmployeeID>7</EmployeeID>
<OrderDate>2001-09-18T00:00:00.0000000-07:00
</OrderDate>
<RequiredDate>2001-10-16T00:00:00.0000000-07:00
</RequiredDate>
<ShippedDate>2001-09-24T00:00:00.0000000-07:00
</ShippedDate>
<ShipVia>3</ShipVia>
<Freight>1.61</Freight>
<ShipName>Ana Trujillo Emparedados y helados
</ShipName>
<ShipAddress>Avda. de la Constitución 2222
</ShipAddress>
<ShipCity>México D.F.</ShipCity>
<ShipPostalCode>05021</ShipPostalCode>
<ShipCountry>Mexico</ShipCountry>
</Orders>
<Orders>
<OrderID>10355</OrderID>
<CustomerID>AROUT</CustomerID>
<EmployeeID>6</EmployeeID>
<OrderDate>2001-11-15T00:00:00.0000000-07:00
</OrderDate>
<RequiredDate>2001-12-13T00:00:00.0000000-07:00
</RequiredDate>
<ShippedDate>2001-11-20T00:00:00.0000000-07:00
</ShippedDate>
<ShipVia>1</ShipVia>
<Freight>41.95</Freight>
<ShipName>Around the Horn</ShipName>
<ShipAddress>Brook Farm Stratford St. Mary
</ShipAddress>
<ShipCity>Colchester</ShipCity>
<ShipRegion>Essex</ShipRegion>
<ShipPostalCode>CO7 6JX</ShipPostalCode>
<ShipCountry>UK</ShipCountry>
</Orders>
<!-- More orders follow -->
</NewDataSet>
|