D
Diego F.
Hello.
I load a DataSet with a XML file and I need to select data from certain
columns. How can I do that?
To explain it better, suppose you have this XML
<users>
<user>
<name> Diego </name>
<country> Spain </country>
</user>
<user>
<name> John </name>
<country> UK </name>
</user>
</users>
What I want to get is a table with all users from a certain country.
Now I'm loading all the XML in a DataSet with the ReadXML method, but I
don't know how to select columns inside the DataSet.
Regards,
Diego F.
I load a DataSet with a XML file and I need to select data from certain
columns. How can I do that?
To explain it better, suppose you have this XML
<users>
<user>
<name> Diego </name>
<country> Spain </country>
</user>
<user>
<name> John </name>
<country> UK </name>
</user>
</users>
What I want to get is a table with all users from a certain country.
Now I'm loading all the XML in a DataSet with the ReadXML method, but I
don't know how to select columns inside the DataSet.
Regards,
Diego F.