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
What is singlecall activation mode used for in .net?
How do you trigger the paint event in system.drawing?
What are virtual destructures?
Explain the garbage collection process?
What is the best way to crack the certification?
What are .net applications?
What is difference between static page and dynamic page?
Differences between dll and exe?
What are the features of dot net?
What is the purpose of enumerable class in .net?
What is meant by managed and unmanaged code?
Using activex control in .net?
Explain how to manage pagination in a page using .net?
How many types of transactions are there in com + .net ?
Tell us the differences between an interface and an abstract class in .net?