Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <ROOT xmlns="http://www.w3.org/1999/xhtml">
  2. <Customer CustomerID="1" CompanyName="xyz" />
  3. <Customer CustomerID="2" CompanyName="abc" />
  4. </ROOT>
  5.  
  6. <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  7. xmlns:sql="urn:schemas-microsoft-com:mapping-schema">
  8. <xsd:element name="Customer" sql:relation="Customers" >
  9. <xsd:complexType>
  10. <xsd:attribute name="CustomerID" type="xsd:string" />
  11. <xsd:attribute name="CompanyName" type="xsd:string" />
  12. </xsd:complexType>
  13. </xsd:element>
  14. </xsd:schema>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement