How can we convert XML data into DataBase table IN .Net?
Answers were Sorted based on User's Feedback
dSet.ReadXml(Server.MapPath("Forms.xml"))
| Is This Answer Correct ? | 14 Yes | 3 No |
Answer / om namo bagavathe vasudevaya n
DataSet ds=new DataSet();
ds.ReadXml(Server.MapPath("XMLFILENAME.xml"));
DataTable tb=new DataTable(ds.Tables(0));
this tb(object) is Datatable contain XmlFileData.
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / lince
Dim xmlreadFile As XmlReader
Dim ds As New DataSet
Dim dt As New DataTable
xmlreadFile = XmlReader.Create("product2.xml", New XmlReaderSettings)
ds.ReadXml(xmlreadFile)
dt = ds.Tables(0)
| Is This Answer Correct ? | 0 Yes | 0 No |
How can you automatically generate interface for the remotable object in .NET with Microsoft tools?
How viewstate is being formed and how it is stored on client in .net?
Elements of CAS
Difference abstract class and interface in .net?
Explain soap and xml?
What is equivalent for regsvr32 exe in .net ?
What is IIS and how we deploy website on IIS.
what will do to avoid prior case?
Can u explain me What is encapsulation?
7 Answers Deloitte, GK companies,
What are the namespace available in .net?
What is static constructor, when it will be fired?
Explain what is the difference between a class and an object, and how do these terms relate to each other?