better is to send the XML as well
Main Topics
Browse All TopicsI'm just starting to learn xquery and I can't seem to get the where clause to work. When I run it via xml spy it just returns the query in the output file. If someone could help me with that and perhaps point to some good links on xquery?
I've attached the code and the part of the dtd that I am using.
Thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I think I just found it. I found an example on the web where open an closing brackets where in the query.
So I changed mine to:
xquery version "1.0";
<example>
{
for $b in doc("fixedQueryOutput.xml"
let $c := $b//pricedSecurityName
where $b/pricedSecurityName = "TEST2"
return $c
}
</example>
The xquery books I'm looking at did not have the starting and ending {}. The queries I had run to this point did not use them. Can you give me some background on how they s/b used?
Business Accounts
Answer for Membership
by: GertonePosted on 2008-08-22 at 09:41:50ID: 22291753
can you send the full DTD (this DTD is not valid since it declares only one element)
Name> }</Name>
I recommend that you work on a wellformed document and try the hassle of validation after you have the XQuery working.
In the XQuery there is one obvious error (I did bnot check in too much detail)
<Name>$b/pricedSecurityName</
should be
<Name>{$b/pricedSecurityName