Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
23k views

How do I find out if a column exists in a VB.Net DataRow

I am reading an XML file into a DataSet and need to get the data out of the DataSet. Since it is a user-editable config file the fields may or may not be there. To handle missing fields well I'd like ...
2
votes
2answers
130 views

Reading an xml subtrees and the descendants C#

I have an XML file that contains several subTrees and those subtrees can also contain subtrees in them. something like this: <File> <A>...</A> <B>...</B> <C> .. ...
2
votes
2answers
175 views

C#: Reading XML (to dictionary)

I need to read a XML file, I read few guides and I only got confused from weird words that I don't know what they mean such as node, to validate the XML etc. etc. So, could you please walk me through ...
1
vote
3answers
44 views

C# The simplest way to obtain XML Data

I have been doing a lot of reading on LINQ to XML but unfortunately this topic (which is fairly new to me) simply will not click. Having said that, please feel free to correct any misspeaks regarding ...
1
vote
1answer
333 views

Read [for xml auto, elements] into DataTable in ADO.NET

I have MS SQL Server stored procedure that returns XML (it uses SELECT with for xml auto, elements) I tried read it into DataTable: DataTable retTable = new DataTable(); ...
1
vote
2answers
1k views

C# WinForms Read XML File - Only Specific Nodes

I have an XML File: <Database> <SMS> <Number>+447761692278</Number> <DateTime>2009-07-27T15:20:32</DateTime> <Message>Yes</Message> ...
1
vote
1answer
3k views

how can I read an xml attribute using readXML? how does dataset.readxml translate into tables?

I just want to know how does the table resulting from readXML look like, say if the xml file looks like this: <item attr="some attribute"> <descirption>anything</description> ...
1
vote
2answers
3k views

How do I improve performance of DataSet.ReadXml if I'm using a schema?

I'm have a ADO DataSet that I'm loading from its XML file via ReadXml. The data and the schema are in separate files. Right now, it takes close to 13 seconds to load this DataSet. I can cut this to ...
0
votes
1answer
52 views

How to deserialzie List of KeyValuePair

My Class implements IXmlSerializable and has a property like this: public List<KeyValuePair<int, bool>> exportList { get { return _exportList; } set { _exportList ...
0
votes
1answer
171 views

Improve DataTable.ReadXml Performance

I am writing a DataTable to xml with the DataTable.WriteXml()-method. This takes a few seconds, which I think is very good. However, reading the file (38MB size, 26000rows, 36 columns) using the ...
0
votes
1answer
68 views

C# DataSet ReadXML error: “the table xxx is already allocated as a child of another table yyy”. No schema

I'm using ReadXML from DataSet to read a XML document without any schema. There are 2 'duration' tags each in a different parent tag. That is why ReadXML complaining: System.Data.DataException: ...
0
votes
1answer
110 views

Visual Basic set User Agent with ReadXml

I'm trying to set the user agent for a request with XmlRead. I googled a lot about this and couldn't find the answer. Here is my chunk of code: Dim RssData As DataSet Dim Title As String ...
0
votes
1answer
247 views

SOAP Response to DataTable in C#

I have been searching and trying in many forms to pass an XML Response to a simple DataTable in the same way Excel does. The XML is like: <?xml version="1.0" standalone="no"?> ...
0
votes
1answer
115 views

Exception thrown with DataTable ReadXml

I have dataTable and I save it to file using DataTable.WriteXml But when I try to load it using DataTable.ReadXml I get an exception: Invalid Operation exception DataTable does not support ...
0
votes
1answer
329 views

how to search for a value in datatable in c#

I want to read a xml file in c# and find the "value" for "key" I know how to read with data set but how to search with data set or should I have to put data set into datatable and then search?
0
votes
2answers
301 views

Some Problem In Using DataSet.ReadXML

i want to use dataset.readxml for retrieve some data from xml file.But,my xml format is not well format,one part is for dataset and another part for other things.so,how i retrieve the dataset part.i ...
0
votes
1answer
184 views

XML parsing problem Object reference not set to an instance of an object

I am parsing XML in a dataset it works fine except with some RSSs it gives an error "Object reference not set to an instance of an object." i tried the XmlDataSource and it gives the same error Note ...
0
votes
1answer
475 views

Implementing IXmlSerializable for content containing data with or without CDATA tags

I am trying to figure out a way to parse an xml tag where content is passed in with CDATA tags for some input, but not for all. For example, the following is sample content I would receive for data ...
0
votes
3answers
1k views

Problem with node.GetElementsByTagName in C#

I have a really simple XML file that I'm trying to read, but I can't seem to get it working. Here is the XML file: <?xml version="1.0"?> ...
0
votes
4answers
2k views

Read XML Node

I want to read an specific xml node and it's value for example <customers> <name>John</name> <lastname>fetcher</lastname> </customer> and my code behind should ...