|
[XQuery Talk Mailing List Archive Home] [By Date] [By Thread] [By Subject] [By Author] [Recent Entries] [Reply To This Message] RE: aggregate , groupingDavid Carlisle davidc at nag.co.ukThu Dec 22 00:05:37 PST 2005
declare function local:pathOfNode($node)
{
if(empty($node/..)) then ""
else concat(local:pathOfNode($node/..), "/", local-name($node))
};
Yes I did wonder if the OP really needed the paths, I guessed not, but
if he did, then yes your code does what he wanted (and mine didn't:-)
> As you can see the query is not exactly simple to write.
The above function is simpler if you have the ancestor:: axis to hand as
then it's just
string-join(ancestor-or-self::node()/name(),'/')
Are there really going to be any Xquery implementations that don't offer
the full axis feature? (If not, why is this feature optional?)
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________
|
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
|






