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

RE: RE: XQuery and DTD/Schema?


xquery sum
At 03:00 PM 7/3/2002 -0700, Dare Obasanjo wrote:
 > Mike Champion wrote:
> > I can think of lots of scenarios where I would want my
> > get-total() function to
> > process the  "merely well-formed elements whose name happens
> > to be 'invoice'".
> >
>
>I agree. I am both dissappointed and stunned that such functionality
>does not exist in XQuery.

Since at least two people seem to think this is true, let me show how you 
would do this in XQuery:

define function get-total( element $i )
   returns xs:decimal
{
         sum( $i//item/price )
}

I didn't say 'element invoice' in the parameter declaration, because that 
requires that the element conform to the globally defined element named 
'invoice'. If I want to make sure that the element has the appropriate 
name, I can test the name:

define function get-total( element $i )
   returns xs:decimal
{
         if (local-name( $i ) = 'invoice')
           then sum( $i//item/price )
           else <error>Not an invoice!!!</error>
}

We will have better ways of handling errors in the next Working Drafts.

Jonathan


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.