Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How can we convert XML data into DataBase table IN .Net?

Answers were Sorted based on User's Feedback



How can we convert XML data into DataBase table IN .Net?..

Answer / naveen kumar

dSet.ReadXml(Server.MapPath("Forms.xml"))

Is This Answer Correct ?    14 Yes 3 No

How can we convert XML data into DataBase table IN .Net?..

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

How can we convert XML data into DataBase table IN .Net?..

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

Post New Answer

More Dot Net General Interview Questions

What is the difference between a debug and release build?

0 Answers  


What is RCW (Run time Callable Wrappers)?

0 Answers  


Explain different types of html, web and server controls.

0 Answers  


1.What is the major advantage of polymorphism? Please don't simply say binding. Specify any other reason.

2 Answers   247Customer,


If I am writing in a language like vb or c++, what are the procedures to be followed to support .net?

0 Answers  


where are connection strings stored?

1 Answers   Manhattan,


What is .net code security?

0 Answers  


Compare client server application with n-tier application

0 Answers  


What is the difference between imperative and interrogative code?

0 Answers  


Do you know what are three common acronyms used in .net, and what do they stand for?

0 Answers  


Please explain when should you use .net web forms over asp.net mvc?

0 Answers  


Explain weg config settings for exception managment in asp.net?

1 Answers   C Squared Systems,


Categories