[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Question on id constraints

  • From: Eddie Robertsson <eddie@a...>
  • To: "Anderson, John" <John@B...>, Xml-Dev <xml-dev@l...>
  • Date: Wed, 01 Aug 2001 10:25:15 +1000

xpath key
Hi John,

Let me see if I can shed some light on the key, unique and keyref issue.

I'm trying to decipher the schema spec on identity contstraint validity, but perhaps someone can save me a few hours and a few aspirin.

If I have:
<keyref name="ref" refers="pk" > ...

1. Is the key "pk" required to be defined physically earlier in the schema file (I would have thought not)

No, the key declaration doesn't need to be declared physically before the keyref declaration. The rule is that the scoping element for the key (or unique) declaration must be the same as OR a descendant of the scoping element for the keyref declaration.
This means that the following is correct (not complete XML Schema syntax!):

<xs:element name="root">

   <xs:element name="sub" type="whatever">
      <xs:key name="key">
         <xs:selector xpath="key"/>
         <xs:field xpath="@id"/>
      </xs:key>
   </xs:element>

   <xs:keyref name="keyref" refer="key">
      <xs:selector xpath="keyref"/>
      <xs:field xpath="@ref"/>
   </xs:keyref>

</xs:element>

The scoping element for the key declaration is a descendant of the scoping element for the keyref declaration.

However this is not allowed:

<xs:element name="root">

   <xs:element name="sub" type="whatever">
      <xs:keyref name="keyref" refer="key">
         <xs:selector xpath="keyref"/>
         <xs:field xpath="@ref"/>
      </xs:keyref>
   </xs:element>

   <xs:key name="key">
      <xs:selector xpath="key"/>
      <xs:field xpath="@id"/>
   </xs:key>

</xs:element>

2. Is pk required to be defined on the same element as ref, or on a descendant or anscetor of it, or just anywhere in the same schema?
The same as OR a descendant.

Cheers,
/Eddie
 


PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.