How can we convert XML data into DataBase table IN .Net?
Answer Posted / 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 |
Post New Answer View All Answers
Explain what is a manifest in .net?
Is there any thread in our .net programs?
Explain me what is the difference between a class and an object, and how do these terms relate to each other?
What is the difference between "using system.data;" and directly adding the reference from "add references dialog box"?
Explain the use of activex control in .net?
What is difference between system.string and system.stringbuilder classes?
What is your observations between vb.net and vc#.net?
What are the security policy levels in .Net
Explain the main components in .net?
Define code access security (cas)?
What's singlecall activation mode used for in .net?
How com+ related to the dna architecture?
What is the difference between server.transfer and response.redirect? Why?
What is the difference between response.write & response.output.write?
How to manage pagination in a page using .net?