NewTerminator
Programmer
I have a XML document that looks like the one below:
<rootelement>
<elementparent>
<child1>child1 </child1>
<child2>child2 </child2>
</elementparent>
<elementparent>
<child1>child1 </child1>
<child2>child2 </child2>
<child3>
<subchild>Testing</subchild>
</child3>
</elementparent>
</rootelement>
I would like to store these element information into the database. The example that has been displayed on top is a small part of a huge XML document that drills down to several inconsistent child nodes (like child3 above). Is there anyway i can read the data from the XML elements and store them in the database without using DOM?
I want to use Microsoft technologies to solve the problem.
Any help will be greatly appreciated
<rootelement>
<elementparent>
<child1>child1 </child1>
<child2>child2 </child2>
</elementparent>
<elementparent>
<child1>child1 </child1>
<child2>child2 </child2>
<child3>
<subchild>Testing</subchild>
</child3>
</elementparent>
</rootelement>
I would like to store these element information into the database. The example that has been displayed on top is a small part of a huge XML document that drills down to several inconsistent child nodes (like child3 above). Is there anyway i can read the data from the XML elements and store them in the database without using DOM?
I want to use Microsoft technologies to solve the problem.
Any help will be greatly appreciated