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
Describe the use of following com+ services jit activation, queued components, object pooling.?
Usually in .net, the clr takes care of memory management. Is there any need for a programmer to explicitly release memory and resources? If yes, why and how?
What is a metadata in .net?
Explain what is the difference between a class and an object?
How to use datagrid value in select statements where condition ,if cell is hyperlink bounded column?
Difference abstract class and interface in .net?
Tell us what do the following acronyms in .net stand for: il, cil, msil, cli and jit?
What is the use of common language runtime?
Explain about .net assemblies?
What is managed code and managed data in .net?
Describe the Managed Execution Process?
Example from .net. Integer & struct are value types or reference types in .net?
Explain the process of serialization in .NET?
Please explain what is the .net framework and how does it work?
How can I find out what the garbage collector is doing?