Hi,
XML file :
<?xml version="1.0" encoding="UTF-8"?>
<articles>
<article>
<id>000001</id>
<pagetitle>Page Title</pagetitle>
<keywords>Keywords</keywords>
<description>description</description>
<pubDate>Wed, 02 Oct 2010 13:00:00 GMT</pubDate>
<updated>Wed, 02 Oct 2010 13:00:00 GMT</updated>
<author id="1">
<name>Joe</name>
<url>http://www.media.com</url>
</author>
<categories>
<category id="123">
<name>First Category</name>
<parent>0</parent>
</category>
<category id="456">
<name>First Sub-Category</name>
<parent>123</parent>
</category>
<category id="789">
<name>Second Sub-Category</name>
<parent>123</parent>
</category>
</categories>
<image id="1">
<thumbnail>
<url>http://imageurl.com/thumbnail.jpg</url>
<width>100</width>
<height>150</height>
</thumbnail>
<large>
<url>http://imageurl.com/image.jpg</url>
<width>300</width>
<height>450</height>
</large>
<caption>Image Caption</caption>
<description>Image description</description>
</image>
<headline>Article Headline</headline>
<summary>This is an article summary</summary>
<body>This is the articles main body</body>
</article>
</articles>
For this, i need to store article, author, Categories and Image node data into sql server database (different table).
can any one send me source code for this