Blog
-
Fast Track XML
Reading XML Documents
XML Reader Abstract Class - XML Text Reader Class
Ex:
string sUrl = "http://localhost/books.xml";
XmlTextReader myReader = new XmlTextReader(sUrl);
while (myReader.Read())
System.Diagnostics.Debug.WriteLine ...
Posted Feb 4, 2009 1:48 PM by M Soni
-
XML - In Sql Server 2005
IntroductionWith the growing use of XML data, the need for the coexistence of relational data and XML data is also growing. The classic approach of storing XML data as ...
Posted Feb 2, 2009 1:47 PM by M Soni
|
|