|
[XQuery Talk Mailing List Archive Home] [By Date] [By Thread] [By Subject] [By Author] [Recent Entries] [Reply To This Message] Multiple computed attributes in Saxon 8.9Florent Georges darkman_spam at yahoo.frTue May 15 18:18:04 PDT 2007
Claus wrote:
Hi
> 10 let $pg :=
>
doc("pue_current/pue-stamm-prod.xml")//v:ProductGroup[@ID=$br/@ProductGroupID]
> 11 let $brand :=
> doc("pue_current/pue-stamm-marken.xml")//v:Brand[@ID=$br/@BrandID]
> 12 return
> 13 attribute brand
> {data($brand/v:Description[@language="deu"])},
> 14 attribute pg {data($pg/v:Description[@language="deu"])},
> 15 attribute series
> {data($br/v:Description[@language="deu"])}
You have:
let $v := 'v'
return
attribute a1 { $v },
attribute a2 { $v }
I guess you want:
let $v := 'v'
return (
attribute a1 { $v },
attribute a2 { $v }
)
Regards,
--drkm
______________________________________________________________________________
Stockage illimité de vos mails avec Yahoo! Mail. Changez aujourd'hui de mail !
|
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
|






