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
How boxing and unboxing occures in memory?
Explain what is an anonymous method and how is it different from a lambda expression?
What’s different between process and application in .net?
How is meant by dll in .net?
What is STA in .NET?
Explain what is the difference between odbc and ado?
What is data type and how many types of data types are in .NET ?
What is the difference between vb.net and vc#.net?
Is .net core installed?
Explain Creational design pattern in .NET?
Explain soap and xml?
what is the keyword used for self reference?
What is the use of gacutil.exe?
What is the single responsibility principle?
How viewstate is being formed and how it's stored on client in .net?