ABOUT DATASET SAMPLE FIGURE

  • Thread starter Thread starter paul_zaoldyeck
  • Start date Start date
P

paul_zaoldyeck

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"?
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top