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 |
Describe the difference between inline and code behind which is best in a loosely coupled solution?
Explain the procedure to add assemly to gac to make it shared one?
what are the controls used to upload a file from client to server?
What does jit do?
What are the fundamental objects in ADO.NET?
What is Finalizer in .NET define Dispose and Finalize ?
Do you know what is linq?
How boxing and unboxing occures in memory?
Is .net 4.8 backwards compatible?
Explain something about WebService?
What is iis? Have you used it?
What's wrong with a line like this? Datetime.parse(mystring);