How can we convert XML data into DataBase table IN .Net?
Answers were Sorted based on User's Feedback
dSet.ReadXml(Server.MapPath("Forms.xml"))
| Is This Answer Correct ? | 14 Yes | 3 No |
Answer / 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 |
Answer / 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 |
Explain the purpose of Remoting in .NET?
0 Answers Petranics Solutions,
which method do you use to redirect the user to another page without performing a round trip to the client? How?
C++ & C# differences ?
in hibernate, what is dirty reading?
Can a try block have more than one catch block?
Describe the programming model of a windows service
Explain is the jit an interpreter?
How does the generational garbage collector in the .net clr manage object lifetime? What is non-deterministic finalization?
Explain me what is .net web service?
How to implement DataGrid in .NET?
What does msil do?
What are the different types of memory in .net?