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 |
How can you see which services are running on a Windows box?
Where does the dispose method lie and how can it be used to clean up resources?
Explain how to produce an assembly?
Explain what is a manifest in .net?
Please send me the latest asp.net,c#,sql server interview questions .my email id is ramtryin@gmail.com
What is Finalizer in .NET define Dispose and Finalize ?
What is RPC? What is the use of it?
What is the base class of Button control?
Explain the process of compilation in .NET?
Explain what do the terms “boxing” and “unboxing” mean?
Explain me difference between public and static modifiers?
Types of evidence in .net with context to CAS