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 difference between .net core and .net standard?
Using com component in .net?
When should I use .net core?
What is the single responsibility principle?
Describe the compilation process for .net code?
What are the differences between com architecture and.net architecture?
How to implement CAS in .Net?
What is managed code in .NET?
Explain the difference between asp.net and asp?
What is typical about a windows process in regards to memory allocation in .net?
Is the COM architecture same as .Net architecture? What is the difference between them (if at all there is)?
Explain the main components in .net?
Is .net capable of supporting multi-thread?
How to Create and Consume a Web Service?
What is a garbage collector?