XQuery?

ManicCW

Well-known member
Joined
Jul 21, 2005
Messages
428
Location
Mostar
Programming Experience
Beginner
Is XQuery supported in .net framework 1.1 and is it supported by IE and Firefox? If it is can someone give me an exampe on how to use it asp.net app. Tnx!
 
I found the solution for xquery to query xml and select nodes that I want. But I can't seem to find how to update or delete node using xquery. I don't want to use xmldocument because it seems to load entire document and then works on it, that's not good for large data (like 500 - 1000 or more nodes). Does anyone knows how to modify or delete node using xquery or any other method that does not load entire document in memory?
 
As you've probably found out by now, XQuery is currently readonly, they are still working on the INSERT/UPDATE/DELETE facility. I have no idea how you'd go about editing a node without loading the whole document. However I'd be interested to know if you come up with anything...
 
Back
Top