XML Querying .....???

  • Thread starter Thread starter sandy82
  • Start date Start date
S

sandy82

Hi all I use a dataset and then create an Xml File based on that I want
to Query this Xml File .
I searched on that but could find the Xpath as one of the method is
their any easier method to query this Xml File .
Plz Guide me in this context .
 
Personally, I find XPath 1.0 and 2.0 quite easy to work with.

There is a separate language especially for querying XML, it is called
XQuery. It can be used in the same way that SQL queries a database. But
I don't know if it is supported in .NET.

See this for more info about XQuery. (There is also an XPath tutorial
at the home page.)

<http://www.w3schools.com/xquery/default.asp>

Regards,

Cerebrus.
 
Thanks Dear can u provide me certain help in using Xpath or some good
resources .
It would be of gr8 help
 
Hi,

Sure, what kind of resources or help are you looking for ? Everyone
here is always ready to help you out.

Regards,

Cerebrus.
 
If you're using .Net Platform 2.0, check out the following article. It
describes the use of an XmlDataDocument that is synchronized with the
DataSet to employ XPath queries on the DataSet:

http://msdn2.microsoft.com/en-us/library/89tyw6dw.aspx

--
HTH,

Kevin Spencer
Microsoft MVP
Professional Numbskull

Show me your certification without works,
and I'll show my certification
*by* my works.
 
Back
Top