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 |
What is the difference between a debug and release build?
What is RCW (Run time Callable Wrappers)?
Explain different types of html, web and server controls.
1.What is the major advantage of polymorphism? Please don't simply say binding. Specify any other reason.
If I am writing in a language like vb or c++, what are the procedures to be followed to support .net?
where are connection strings stored?
What is .net code security?
Compare client server application with n-tier application
What is the difference between imperative and interrogative code?
Do you know what are three common acronyms used in .net, and what do they stand for?
Please explain when should you use .net web forms over asp.net mvc?
Explain weg config settings for exception managment in asp.net?