How can we convert XML data into DataBase table IN .Net?
Answer Posted / om namo bagavathe vasudevaya n
DataSet ds=new DataSet();
ds.ReadXml(Server.MapPath("XMLFILENAME.xml"));
DataTable tb=new DataTable(ds.Tables(0));
this tb(object) is Datatable contain XmlFileData.
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
Which file is taken by compiler when we have both file Application and Server Configuration file?
What is the advantage of .net core?
What is meant by globalization and localization?
Explain what is an application domain?
What is the use of UML in .Net
How can you assign an rgb color to a system.drawing.color object?
Explain me what is the difference between a class and an object, and how do these terms relate to each other?
What are nullable types in .NET
What is WSDL? Explain its architecture?
What is the benefit of .net core?
What are the namespace available in .net?
What is the use of design pattern?
What are the main components in .net?
Explain memory-mapped files.
What is garbage collection and how it works. Provide a code example of how you can enforce garbage collection in .net?