|
[XQuery Talk Mailing List Archive Home] [By Date] [By Thread] [By Subject] [By Author] [Recent Entries] [Reply To This Message] Query Through Multiple FilesMichael Kay mike at saxonica.comSun Jan 20 09:02:07 PST 2008
> > You probably need to use an XQuery collection; however, the > way this works varied between products, so it would depend on > which XQuery implementation you were using. > > It is possible to query multiple files portably if you know > their names Another way of doing it that is portable is to create a document that contains links to the documents you want to search: <dir> <file>boys.xml</file> <file>girls.xml</file> <file>men.xml</file> <file>women.xml</file> </dir> then for $doc in /dir/file/doc(.) return $doc//ap/address You wrote: for $read in ... where distinct-values($read) return... It's disappointing that after all the help you were given last week you still haven't grasped that this is nonsense. The value of $read is a single item, and passing a single item to distinct-values has no useful effect. If you don't understand the advice you are getting, please say so and ask for further explanation - it's a waste of everyone's time if you ignore the advice and just keep making the same mistake. Michael Kay http://www.saxonica.com/
|
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
|






