Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. amiranda

    XSD choice sequence

    I solved this problem using: <xs:element name="OPERATIONS"> <xs:complexType> <xs:sequence> <xs:choice> <xs:element ref="INSERT"/> <xs:element ref="UPDATE"/> <xs:element ref="CREATE"/> <xs:element ref="DELETE"/> <xs:element...
  2. amiranda

    XSD choice sequence

    I know that. But that will allow from 0 to 5 INSERT records. I want to make it possible to have other records (UPDATE, CREATE, etc.) too, but as a choice from one of them. Like: <OPERATIONS> <INSERT></INSERT> <INSERT></INSERT> <OPERATIONS> or <OPERATIONS> <UPDATE></UPDATE>...
  3. amiranda

    XSD choice sequence

    How can I set a sequence of choices? An example: <xs:element name="OPERATIONS"> <xs:complexType> <xs:sequence> <xs:choice> <xs:element ref="INSERT"/> <xs:element ref="UPDATE"/> <xs:element ref="CREATE"/> <xs:element ref="DELETE"/>...

Part and Inventory Search

Back
Top