How can we convert XML Data to DataBase Table in C#.Net?
Answer Posted / 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 View All Answers
Contrast between an interface and abstract class?
Is lazy t thread safe?
What are types of constructor?
List out two different types of errors in c#?
What is the difference between firstordefault and singleordefault?
What is c# console application?
What is a multicast delegate in c#?
What is jagged array?
Is there hashmap in c#?
How can I develop an application that automatically updates itself from the web?
Is unity object oriented?
what is the default access for a class
Is null in c#?
code for arranging given number in possible permutation ways ex:123,321,312,132,231,213.
What are the types of access modifiers?