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 |
Is do-it (chennai) a good institute to learn dot-net???? are the trainers well experienced??
What is strong-typing versus weak-typing? Which is preferred?
Explain me what is the difference between an abstract class and an interface?
How is .net able to support a lot of languages?
Explain me what is the difference between a class and an object, and how do these terms relate to each other?
What is .net assembly?
Explain what is a manifest in .net?
Which property is used in the email to send the content as HTML
how to connect database connectivity in dotNET? if suppose SQL server?and also MS access?
What is the difference between custom control and web control?
Explain what is the difference between encrypting a password and applying a hashing?
Directcast(123.34,integer) - should it throw an error? Why or why not?