Loading XML Into A Define Typed DataSet

  • Thread starter Thread starter One Handed Man \( OHM - Terry Burns \)
  • Start date Start date
O

One Handed Man \( OHM - Terry Burns \)

< and > are XML tag brackets, you need to lookup the code equivelents for
these two characters and substitute them to have them interpereted otherwise
it will screw up the import.
 
Hey,
I'v created a define typed DataSet using an XSD Schema, and I tried to read
an XML file into the dataset and update my table with the new data.
The problem is, that I have a feild in the table/XSD Schema, that is of type
string (varchar2 to be exact),
And when I try to put a string containing - ">" or - "<" in the XML that
will be read into the define typed DataSet, I get an error saying that my
XML is not well formed...
Is there a way to tell .NET not to parse a certain part of a XML Document?
Thanks ahead

--Ram
 
Back
Top