HI EVERYONE!
can anyone share an example dataset figure or code???
i'm still neophyte on c# and xml programming.
can anyone share there knowledge with regards to using
dataset...converting it to an xml file and vice versa...
we're having a problem on getting the value of the nodes in xml when it
already has the child of the child of the child...for instance
<parent>
<child>
<grandchild>
<greatgrandchild>
</greatgrandchild>
</grandchild>
</child>
</parent>
i'm planning to use either hash table, dataview or data set...which is
better?
i'm having a problem on how to transfer the data from xml to either of
the above mentioned and vice versa.
can anyone help"?
sloan - 31 Aug 2006 20:15 GMT
May or maybe not this can help.
If you have a strongly typed DataSet object.
dim inputDS as MyStrongTypedDataSet = new MyStrongTypedDataSet
Dim xmlDoc As XmlDataDocument = New XmlDataDocument(inputDS)
C#
MyStrongTypedDataSet inputDS = new MyStrongTypedDataSet();
XmlDataDocument xdoc = new XmlDataDocument( inputDS );
DataSet xml ... isn't super good with nestings.
Its more a "relational" type model. Aka, a mini database table structure.
> HI EVERYONE!
>
[quoted text clipped - 22 lines]
> the above mentioned and vice versa.
> can anyone help"?