[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Fw: XML-QL (was Re: Whence XQL?)
Roger L. Costello <costello@xxxxxxxxx> wrote: >Here's how to do it using XML-QL: > >function AllPartNamesQuery () { > >// Source: Parts.xml >// Find the names of all the parts > >construct <name>$name</name> >where <Parts> > <part*> > <name>$name</name> > </> > </Parts> IN "Parts.xml" >} > >How would you do this using XML syntax? /Roger Like this: <xsl:template match="part"> <xsl:value-of select="name"/> </xsl:template> But that's a different story :-) BTW, it is nice though to see some queries which become simpler when converted from XML-QL to "XQL"; it is easy to think that the reverse always holds, since the XQL documents focus on the hard cases. Share & Enjoy, Oren Ben-Kiki XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|