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

Function and Query Evaluation with No XML Tags Error

Wei, Alice J. ajwei at indiana.edu
Tue Feb 26 11:21:37 PST 2008


  Function and Query Evaluation with No XML Tags Error
Hi, David:

  I think I am having a different issue different from what I had several weeks ago.
   What I have modified is from:

let $ad := fn:collection("xmldb:exist://db/cbml")//ad/p[contains(upper-case(.), 'BOOK')]
let $sorted_result:=
for $doc in distinct-values($ad)
order by $doc
return $doc
for $r at $count in $sorted_result
let $nodes := $ad[. = $r][1]
return
<ad>
{$nodes}
</ad>

  by trying to put it in user-defined functions, which is currently giving me quite a bit of problems from itself.

declare boundary-space preserve;
declare function local:distinct(
     $seq as xs:anyAtomicType*)
      as xs:anyAtomicType
 {
 let $doc := distinct-values($seq)
 order by $doc
 return
  <ad>{$doc} </ad>
 };

 for $ad in
distinct-values(collection("xmldb:exist://db/cbml")//ad/p[contains(upper-case(.$
 return
<ad>{local:distinct($ad)}</ad>

As I mentioned before, I only intend to have the output be appeared in the same way as the above XQuery that is not in the function.
Is this possible?

Thanks for your help.
======================================================
Alice Wei
MIS 2008
School of Library and Information Science
Indiana University Bloomington
http://x-query.com/mailman/listinfo/talk
________________________________________
From: David Carlisle [http://x-query.com/mailman/listinfo/talk]
Sent: Tuesday, February 26, 2008 10:33 AM
To: Wei, Alice J.
Cc: http://x-query.com/mailman/listinfo/talk
Subject: Re:  Function and Query Evaluation with No XML Tags Error

Alice,

Alice it seems hard to help as you have been essentially posting the
same code, with the same error for weeks,

When you go

 for $ad in distinct-values(...anything)

then, on each iteration $ad will be a single string (one of the values)

So on each call to local:distinct($ad) you are passing in a single string. so
doing operations such as distinct-values() or for or order by are all
essentialy null-operations. It's not an error to take all the
unique values from a sequence of length one and then sort them, but you will always
just get back the value you started with.


See for example:

/xquerytalk/2008-January/002436.html

David

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs.
________________________________________________________________________



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