DataSet Schema: <?xml version="1.0" encoding="utf-16"?> <xs:schema id="NewDataSet" targetNamespace="http://tempuri.org/CustomersOrders.xsd" xmlns:mstns="http://tempuri.org/CustomersOrders.xsd" xmlns="http://tempuri.org/CustomersOrders.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" attributeFormDefault="qualified" elementFormDefault="qualified"> <xs:element name="NewDataSet" msdata:IsDataSet="true" msdata:UseCurrentLocale="true"> <xs:complexType> <xs:choice minOccurs="0" maxOccurs="unbounded"> <xs:element name="Customers"> <xs:complexType> <xs:sequence> <xs:element name="CustomerID" type="xs:string" minOccurs="0" /> <xs:element name="CompanyName" type="xs:string" minOccurs="0" /> <xs:element name="ContactName" type="xs:string" minOccurs="0" /> <xs:element name="ContactTitle" type="xs:string" minOccurs="0" /> <xs:element name="Address" type="xs:string" minOccurs="0" /> <xs:element name="City" type="xs:string" minOccurs="0" /> <xs:element name="PostalCode" type="xs:string" minOccurs="0" /> <xs:element name="Country" type="xs:string" minOccurs="0" /> <xs:element name="Phone" type="xs:string" minOccurs="0" /> <xs:element name="Fax" type="xs:string" minOccurs="0" /> </xs:sequence> </xs:complexType> </xs:element> <xs:element name="Orders"> <xs:complexType> <xs:sequence> <xs:element name="OrderID" type="xs:string" minOccurs="0" /> <xs:element name="CustomerID" type="xs:string" minOccurs="0" /> <xs:element name="EmployeeID" type="xs:string" minOccurs="0" /> <xs:element name="OrderDate" type="xs:string" minOccurs="0" /> <xs:element name="RequiredDate" type="xs:string" minOccurs="0" /> <xs:element name="ShippedDate" type="xs:string" minOccurs="0" /> <xs:element name="ShipVia" type="xs:string" minOccurs="0" /> <xs:element name="Freight" type="xs:string" minOccurs="0" /> <xs:element name="ShipName" type="xs:string" minOccurs="0" /> <xs:element name="ShipAddress" type="xs:string" minOccurs="0" /> <xs:element name="ShipCity" type="xs:string" minOccurs="0" /> <xs:element name="ShipRegion" type="xs:string" minOccurs="0" /> <xs:element name="ShipPostalCode" type="xs:string" minOccurs="0" /> <xs:element name="ShipCountry" type="xs:string" minOccurs="0" /> </xs:sequence> </xs:complexType> </xs:element> </xs:choice> </xs:complexType> </xs:element> </xs:schema>
DataSet XML: <NewDataSet xmlns="http://tempuri.org/CustomersOrders.xsd"> <Customers> <CustomerID>ALFKI</CustomerID> <CompanyName>Alfreds Futterkiste</CompanyName> <ContactName>Maria Anders</ContactName> <ContactTitle>Sales Representative</ContactTitle> <Address>Obere Str. 57</Address> <City>Berlin</City> <PostalCode>12209</PostalCode> <Country>Germany</Country> <Phone>030-0074321</Phone> <Fax>030-0076545</Fax> </Customers> <Customers> <CustomerID>ANATR</CustomerID> <CompanyName>Ana Trujillo Emparedados y helados</CompanyName> <ContactName>Ana Trujillo</ContactName> <ContactTitle>Owner</ContactTitle> <Address>Avda. de la Constitución 2222</Address> <City>Mexico D.F.</City> <PostalCode>05021</PostalCode> <Country>Mexico</Country> <Phone>(5) 555-4729</Phone> <Fax>(5) 555-3745</Fax> </Customers> <Customers> <CustomerID>ANTON</CustomerID> <CompanyName>Antonio Moreno Taquería</CompanyName> <ContactName>Antonio Moreno</ContactName> <ContactTitle>Owner</ContactTitle> <Address>Mataderos 2312</Address> <City>Mexico D.F.</City> <PostalCode>05023</PostalCode> <Country>Mexico</Country> <Phone>(5) 555-3932</Phone> </Customers> <Customers> <CustomerID>AROUT</CustomerID> <CompanyName>Around the Horn</CompanyName> <ContactName>Thomas Hardy</ContactName> <ContactTitle>Sales Representative</ContactTitle> <Address>120 Hanover Sq.</Address> <City>London</City> <PostalCode>WA1 1DP</PostalCode> <Country>UK</Country> <Phone>(171) 555-7788</Phone> <Fax>(171) 555-6750</Fax> </Customers> <Orders> <OrderID>10308</OrderID> <CustomerID>ANATR</CustomerID> <EmployeeID>7</EmployeeID> <OrderDate>1996-09-18T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1996-10-16T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1996-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>Mexico D.F.</ShipCity> <ShipPostalCode>05021</ShipPostalCode> <ShipCountry>Mexico</ShipCountry> </Orders> <Orders> <OrderID>10355</OrderID> <CustomerID>AROUT</CustomerID> <EmployeeID>6</EmployeeID> <OrderDate>1996-11-15T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1996-12-13T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1996-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> <Orders> <OrderID>10365</OrderID> <CustomerID>ANTON</CustomerID> <EmployeeID>3</EmployeeID> <OrderDate>1996-11-27T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1996-12-25T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1996-12-02T00:00:00.0000000-07:00</ShippedDate> <ShipVia>2</ShipVia> <Freight>22</Freight> <ShipName>Antonio Moreno Taquería</ShipName> <ShipAddress>Mataderos 2312</ShipAddress> <ShipCity>Mexico D.F.</ShipCity> <ShipPostalCode>05023</ShipPostalCode> <ShipCountry>Mexico</ShipCountry> </Orders> <Orders> <OrderID>10383</OrderID> <CustomerID>AROUT</CustomerID> <EmployeeID>8</EmployeeID> <OrderDate>1996-12-16T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1997-01-13T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1996-12-18T00:00:00.0000000-07:00</ShippedDate> <ShipVia>3</ShipVia> <Freight>34.24</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> <Orders> <OrderID>10453</OrderID> <CustomerID>AROUT</CustomerID> <EmployeeID>1</EmployeeID> <OrderDate>1997-02-21T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1997-03-21T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1997-02-26T00:00:00.0000000-07:00</ShippedDate> <ShipVia>2</ShipVia> <Freight>25.36</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> <Orders> <OrderID>10507</OrderID> <CustomerID>ANTON</CustomerID> <EmployeeID>7</EmployeeID> <OrderDate>1997-04-15T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1997-05-13T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1997-04-22T00:00:00.0000000-07:00</ShippedDate> <ShipVia>1</ShipVia> <Freight>47.45</Freight> <ShipName>Antonio Moreno Taquería</ShipName> <ShipAddress>Mataderos 2312</ShipAddress> <ShipCity>Mexico D.F.</ShipCity> <ShipPostalCode>05023</ShipPostalCode> <ShipCountry>Mexico</ShipCountry> </Orders> <Orders> <OrderID>10535</OrderID> <CustomerID>ANTON</CustomerID> <EmployeeID>4</EmployeeID> <OrderDate>1997-05-13T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1997-06-10T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1997-05-21T00:00:00.0000000-07:00</ShippedDate> <ShipVia>1</ShipVia> <Freight>15.64</Freight> <ShipName>Antonio Moreno Taquería</ShipName> <ShipAddress>Mataderos 2312</ShipAddress> <ShipCity>Mexico D.F.</ShipCity> <ShipPostalCode>05023</ShipPostalCode> <ShipCountry>Mexico</ShipCountry> </Orders> <Orders> <OrderID>10558</OrderID> <CustomerID>AROUT</CustomerID> <EmployeeID>1</EmployeeID> <OrderDate>1997-06-04T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1997-07-02T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1997-06-10T00:00:00.0000000-07:00</ShippedDate> <ShipVia>2</ShipVia> <Freight>72.97</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> <Orders> <OrderID>10573</OrderID> <CustomerID>ANTON</CustomerID> <EmployeeID>7</EmployeeID> <OrderDate>1997-06-19T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1997-07-17T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1997-06-20T00:00:00.0000000-07:00</ShippedDate> <ShipVia>3</ShipVia> <Freight>84.84</Freight> <ShipName>Antonio Moreno Taquería</ShipName> <ShipAddress>Mataderos 2312</ShipAddress> <ShipCity>Mexico D.F.</ShipCity> <ShipPostalCode>05023</ShipPostalCode> <ShipCountry>Mexico</ShipCountry> </Orders> <Orders> <OrderID>10625</OrderID> <CustomerID>ANATR</CustomerID> <EmployeeID>3</EmployeeID> <OrderDate>1997-08-08T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1997-09-05T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1997-08-14T00:00:00.0000000-07:00</ShippedDate> <ShipVia>1</ShipVia> <Freight>43.9</Freight> <ShipName>Ana Trujillo Emparedados y helados</ShipName> <ShipAddress>Avda. de la Constitución 2222</ShipAddress> <ShipCity>Mexico D.F.</ShipCity> <ShipPostalCode>05021</ShipPostalCode> <ShipCountry>Mexico</ShipCountry> </Orders> <Orders> <OrderID>10643</OrderID> <CustomerID>ALFKI</CustomerID> <EmployeeID>6</EmployeeID> <OrderDate>1997-08-25T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1997-09-22T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1997-09-02T00:00:00.0000000-07:00</ShippedDate> <ShipVia>1</ShipVia> <Freight>29.46</Freight> <ShipName>Alfreds Futterkiste</ShipName> <ShipAddress>Obere Str. 57</ShipAddress> <ShipCity>Berlin</ShipCity> <ShipPostalCode>12209</ShipPostalCode> <ShipCountry>Germany</ShipCountry> </Orders> <Orders> <OrderID>10677</OrderID> <CustomerID>ANTON</CustomerID> <EmployeeID>1</EmployeeID> <OrderDate>1997-09-22T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1997-10-20T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1997-09-26T00:00:00.0000000-07:00</ShippedDate> <ShipVia>3</ShipVia> <Freight>4.03</Freight> <ShipName>Antonio Moreno Taquería</ShipName> <ShipAddress>Mataderos 2312</ShipAddress> <ShipCity>Mexico D.F.</ShipCity> <ShipPostalCode>05023</ShipPostalCode> <ShipCountry>Mexico</ShipCountry> </Orders> <Orders> <OrderID>10682</OrderID> <CustomerID>ANTON</CustomerID> <EmployeeID>3</EmployeeID> <OrderDate>1997-09-25T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1997-10-23T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1997-10-01T00:00:00.0000000-07:00</ShippedDate> <ShipVia>2</ShipVia> <Freight>36.13</Freight> <ShipName>Antonio Moreno Taquería</ShipName> <ShipAddress>Mataderos 2312</ShipAddress> <ShipCity>Mexico D.F.</ShipCity> <ShipPostalCode>05023</ShipPostalCode> <ShipCountry>Mexico</ShipCountry> </Orders> <Orders> <OrderID>10692</OrderID> <CustomerID>ALFKI</CustomerID> <EmployeeID>4</EmployeeID> <OrderDate>1997-10-03T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1997-10-31T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1997-10-13T00:00:00.0000000-07:00</ShippedDate> <ShipVia>2</ShipVia> <Freight>61.02</Freight> <ShipName>Alfreds Futterkiste</ShipName> <ShipAddress>Obere Str. 57</ShipAddress> <ShipCity>Berlin</ShipCity> <ShipPostalCode>12209</ShipPostalCode> <ShipCountry>Germany</ShipCountry> </Orders> <Orders> <OrderID>10702</OrderID> <CustomerID>ALFKI</CustomerID> <EmployeeID>4</EmployeeID> <OrderDate>1997-10-13T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1997-11-24T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1997-10-21T00:00:00.0000000-07:00</ShippedDate> <ShipVia>1</ShipVia> <Freight>23.94</Freight> <ShipName>Alfreds Futterkiste</ShipName> <ShipAddress>Obere Str. 57</ShipAddress> <ShipCity>Berlin</ShipCity> <ShipPostalCode>12209</ShipPostalCode> <ShipCountry>Germany</ShipCountry> </Orders> <Orders> <OrderID>10707</OrderID> <CustomerID>AROUT</CustomerID> <EmployeeID>4</EmployeeID> <OrderDate>1997-10-16T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1997-10-30T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1997-10-23T00:00:00.0000000-07:00</ShippedDate> <ShipVia>3</ShipVia> <Freight>21.74</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> <Orders> <OrderID>10741</OrderID> <CustomerID>AROUT</CustomerID> <EmployeeID>4</EmployeeID> <OrderDate>1997-11-14T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1997-11-28T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1997-11-18T00:00:00.0000000-07:00</ShippedDate> <ShipVia>3</ShipVia> <Freight>10.96</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> <Orders> <OrderID>10743</OrderID> <CustomerID>AROUT</CustomerID> <EmployeeID>1</EmployeeID> <OrderDate>1997-11-17T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1997-12-15T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1997-11-21T00:00:00.0000000-07:00</ShippedDate> <ShipVia>2</ShipVia> <Freight>23.72</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> <Orders> <OrderID>10759</OrderID> <CustomerID>ANATR</CustomerID> <EmployeeID>3</EmployeeID> <OrderDate>1997-11-28T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1997-12-26T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1997-12-12T00:00:00.0000000-07:00</ShippedDate> <ShipVia>3</ShipVia> <Freight>11.99</Freight> <ShipName>Ana Trujillo Emparedados y helados</ShipName> <ShipAddress>Avda. de la Constitución 2222</ShipAddress> <ShipCity>Mexico D.F.</ShipCity> <ShipPostalCode>05021</ShipPostalCode> <ShipCountry>Mexico</ShipCountry> </Orders> <Orders> <OrderID>10768</OrderID> <CustomerID>AROUT</CustomerID> <EmployeeID>3</EmployeeID> <OrderDate>1997-12-08T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1998-01-05T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1997-12-15T00:00:00.0000000-07:00</ShippedDate> <ShipVia>2</ShipVia> <Freight>146.32</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> <Orders> <OrderID>10793</OrderID> <CustomerID>AROUT</CustomerID> <EmployeeID>3</EmployeeID> <OrderDate>1997-12-24T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1998-01-21T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1998-01-08T00:00:00.0000000-07:00</ShippedDate> <ShipVia>3</ShipVia> <Freight>4.52</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> <Orders> <OrderID>10835</OrderID> <CustomerID>ALFKI</CustomerID> <EmployeeID>1</EmployeeID> <OrderDate>1998-01-15T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1998-02-12T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1998-01-21T00:00:00.0000000-07:00</ShippedDate> <ShipVia>3</ShipVia> <Freight>69.53</Freight> <ShipName>Alfreds Futterkiste</ShipName> <ShipAddress>Obere Str. 57</ShipAddress> <ShipCity>Berlin</ShipCity> <ShipPostalCode>12209</ShipPostalCode> <ShipCountry>Germany</ShipCountry> </Orders> <Orders> <OrderID>10856</OrderID> <CustomerID>ANTON</CustomerID> <EmployeeID>3</EmployeeID> <OrderDate>1998-01-28T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1998-02-25T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1998-02-10T00:00:00.0000000-07:00</ShippedDate> <ShipVia>2</ShipVia> <Freight>58.43</Freight> <ShipName>Antonio Moreno Taquería</ShipName> <ShipAddress>Mataderos 2312</ShipAddress> <ShipCity>Mexico D.F.</ShipCity> <ShipPostalCode>05023</ShipPostalCode> <ShipCountry>Mexico</ShipCountry> </Orders> <Orders> <OrderID>10864</OrderID> <CustomerID>AROUT</CustomerID> <EmployeeID>4</EmployeeID> <OrderDate>1998-02-02T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1998-03-02T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1998-02-09T00:00:00.0000000-07:00</ShippedDate> <ShipVia>2</ShipVia> <Freight>3.04</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> <Orders> <OrderID>10920</OrderID> <CustomerID>AROUT</CustomerID> <EmployeeID>4</EmployeeID> <OrderDate>1998-03-03T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1998-03-31T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1998-03-09T00:00:00.0000000-07:00</ShippedDate> <ShipVia>2</ShipVia> <Freight>29.61</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> <Orders> <OrderID>10926</OrderID> <CustomerID>ANATR</CustomerID> <EmployeeID>4</EmployeeID> <OrderDate>1998-03-04T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1998-04-01T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1998-03-11T00:00:00.0000000-07:00</ShippedDate> <ShipVia>3</ShipVia> <Freight>39.92</Freight> <ShipName>Ana Trujillo Emparedados y helados</ShipName> <ShipAddress>Avda. de la Constitución 2222</ShipAddress> <ShipCity>Mexico D.F.</ShipCity> <ShipPostalCode>05021</ShipPostalCode> <ShipCountry>Mexico</ShipCountry> </Orders> <Orders> <OrderID>10952</OrderID> <CustomerID>ALFKI</CustomerID> <EmployeeID>1</EmployeeID> <OrderDate>1998-03-16T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1998-04-27T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1998-03-24T00:00:00.0000000-07:00</ShippedDate> <ShipVia>1</ShipVia> <Freight>40.42</Freight> <ShipName>Alfreds Futterkiste</ShipName> <ShipAddress>Obere Str. 57</ShipAddress> <ShipCity>Berlin</ShipCity> <ShipPostalCode>12209</ShipPostalCode> <ShipCountry>Germany</ShipCountry> </Orders> <Orders> <OrderID>10953</OrderID> <CustomerID>AROUT</CustomerID> <EmployeeID>9</EmployeeID> <OrderDate>1998-03-16T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1998-03-30T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1998-03-25T00:00:00.0000000-07:00</ShippedDate> <ShipVia>2</ShipVia> <Freight>23.72</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> <Orders> <OrderID>11011</OrderID> <CustomerID>ALFKI</CustomerID> <EmployeeID>3</EmployeeID> <OrderDate>1998-04-09T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1998-05-07T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1998-04-13T00:00:00.0000000-07:00</ShippedDate> <ShipVia>1</ShipVia> <Freight>1.21</Freight> <ShipName>Alfreds Futterkiste</ShipName> <ShipAddress>Obere Str. 57</ShipAddress> <ShipCity>Berlin</ShipCity> <ShipPostalCode>12209</ShipPostalCode> <ShipCountry>Germany</ShipCountry> </Orders> <Orders> <OrderID>11016</OrderID> <CustomerID>AROUT</CustomerID> <EmployeeID>9</EmployeeID> <OrderDate>1998-04-10T00:00:00.0000000-07:00</OrderDate> <RequiredDate>1998-05-08T00:00:00.0000000-07:00</RequiredDate> <ShippedDate>1998-04-13T00:00:00.0000000-07:00</ShippedDate> <ShipVia>2</ShipVia> <Freight>33.8</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> </NewDataSet>
Binding a DataSet to a DataGrid: