XML Query (insert)

ka_lovedee

New member
Joined
Jan 10, 2007
Messages
3
Programming Experience
Beginner
XML:
<book>
<book_id>001</book_id>
<title>XML </title>
</book>

how to implement this query to XML ?
insert into book where book_id=001
 
If you're thinking about Xml style XPath query it can't be used, Xpath is only for lookup. So you have to work with XmlDocument object and its xml nodes or XmlWriter.
 
Back
Top