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 |
Dot Net is Platform Independent or Platform Dependent..?
How does you handle this COM components developed in other programming languages in .NET?
How do you turn off cookies for one page in your site?
What is Assembly manifest? what all details the assembly manifest will contain.
The project which you have made, which methodology did you use?
How anonymous method is different from a lambda expression?
When we go for html server controls and when we go for web server controls?
What class does icon derive from? Isn't it just a bitmap with a wrapper name around it?
What are Satellite Assemblies? How you will create this? How will you get the different language strings?
What is an anonymous method?
What is dot net architecture?
What is the microsoft .net?