[XQuery Talk Mailing List Archive Home] [By Date] [By Thread] [By Subject] [By Author] [Recent Entries] [Reply To This Message]

if statement inside FLWOR-expressions

Piewald, Georg georg.piewald at siemens.com
Fri Aug 22 12:14:53 PDT 2008


  if statement inside FLWOR-expressions
(Sorry Jens, by mistake I replied to you personally instead of the list
- I'm forced to use MS Outlook here, which I'm not used to...)


Jens Teubner wrote:
> 
> On Fri, Aug 22, 2008 at 09:22:30AM +0200, Piewald, Georg wrote:
> 
> >         if ($item < 3) then 
> >             let $var := 'abc'
> >         else
> >             let $var := 'def'
> >         return 
> >             <p>Text {$var}</p>
> 
> XQuery is a functional, expression-oriented language. What you want to
> write is
> 
>   let $var := if ($item < 3) then 'abc' else 'def' 
>   return <p>Text {$var}</p>
> 
> Observe how the `if ...' does not imply a certain control 
> flow. Rather,
> the entire clause is an expression that evaluates to either 'abc' or
> 'def'.

Thank you, that clearifies a lot. But now I want to go a step further.
In my original problem I don't have only one variable $var to set in
each of the if-branches, but several ones. So my original (and of course
wrong) approach was

         if ($item < 3) then 
             let $var1 := 'abc'
             let $var2 := ...
             ...
         else
             let $var1 := 'def'
             let $var2 := ...
             ...
         return 
             <p>Text {$var1} text {$var2} </p>

I don't see how to map this to the correct syntax in a straightforward
way.
Thanks again, Georg



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
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-2007 All Rights Reserved.