Hi,
I just started learning about XML, in my company we need to store details about books in xml file.
<books>
<book id ='12',bookName='xml'></book>
</books>
1) we need to some times query this xml file, right now I am reading an entire file and verifying the book id to identify the one I want to show.
Is there any way to make this process easier?
2)Some time I need to update an existing book data too, so if you could let me know to do this 'right' way and tutorials that would be great.
Thanks,