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 il and c#?
How is meant by dll in .net?
Should I use readerwriterlock instead of monitor.enter/exit?
Explain the difference between task and thread in .net?
What are two different types of remote object creation mode in .net?
What is SOAP? How you will do windows and forms authentication?
Do you know the difference between the stack and the heap?
Please explain what is the difference between a class and an object?
Do you know what is lambda expressions in c#?
What is difference between system.string and system.stringbuilder classes?
What is the use of common language runtime?
Can you edit data in repeater control? How?
Explain attributes in dot net?
How to manage pagination in a page using .net?
What are the new 2.0 features useful for?