Hi friends
can any1 tell me how to parse xml file and store it in Database
Printable View
Hi friends
can any1 tell me how to parse xml file and store it in Database
If your using JAVA
use Java API's for XML parsing
Like SAX and DOM
In .NET, we have a entire namespace dedicated to XML.
We use XmlReader class to read XML files.
In Javascript ActiveX object can be created to parse XML,the constructor is something like ,
var xmlParser = new ActiveXObject(Microsoft.XMLDOM);
xmlParser offers a number of methods to parse XML
Do some googling on that.