How can we convert XML Data to DataBase Table in C#.Net?

Answers were Sorted based on User's Feedback



How can we convert XML Data to DataBase Table in C#.Net?..

Answer / babar shaik

using System.XML;

We can fill the Dataset using

Ds.ReadXML();

Then Update the Data into Database.

Is This Answer Correct ?    13 Yes 5 No

How can we convert XML Data to DataBase Table in C#.Net?..

Answer / arindamrudra

If the XML Document comes like this

@XmlDocument ='<PARAMS><STATIC><INTERVIEWDATETIME>2/13/2009</INTERVIEWDATETIME></STATIC></PARAMS>'

We will have to write

EXEC sp_xml_preparedocument @docHandle OUTPUT, @XmlDocument

@docHandle and @XmlDocument are variable of datatype int and XML respectively.


then we have to use the similar type of code to get the value from XML and the variables should be taken on the basis of the datatype coming from the XML.

DECLARE @date1 DATETIME
SELECT
@date1=Date11
FROM OPENXML(@docHandle, 'PARAMS/STATIC', 1)
WITH
(Date11 DATETIME 'INTERVIEWDATETIME')
EXEC sp_xml_removedocument @docHandle

Is This Answer Correct ?    3 Yes 1 No

Post New Answer

More C Sharp Interview Questions

How do I simulate optional parameters to com calls?

0 Answers  


What is data binding with example?

0 Answers  


Is predicate a functional interface?

0 Answers  


What is the difference between c and c# programming?

0 Answers  


Is array ienumerable c#?

0 Answers  






Explain About delegates

0 Answers   TCS,


From which base class do all Web Forms inherit from?

0 Answers   Siebel,


can you allow a class to be inherited, but prevent the method from being over-ridden?

0 Answers   Siebel Systems,


5. What properties we used to call stored procedure in C#?

2 Answers   Mphasis,


In howmany ways can you deploy an assembly?

0 Answers   Siebel,


What is the default value of date?

0 Answers  


How do you clear a list in c#?

0 Answers  


Categories