P
Peter
I guess I really don't understand how the values get arranged from an XML
file into a dataset, nor how to get them out again.
Can someone please, please give me a detailed explanation of how this simple
XML file would be processed, i.e. the tables would be x, the rows would be y
and the columns would be z?
<doc>
<table name="table1">
<row data="data1" />
<row data="data2" />
<row data="data3" />
</table>
<table name="table2">
<row data="data4" />
<row data="data5" />
<row data="data6" />
</table>
</doc>
Or is there a way to merely dump the contents of a dataset in a
human-readable format? That would be the best of all. Right now I'm picking
through this thing blindly, not knowing how it's put together, and running
into walls on all four sides.
file into a dataset, nor how to get them out again.
Can someone please, please give me a detailed explanation of how this simple
XML file would be processed, i.e. the tables would be x, the rows would be y
and the columns would be z?
<doc>
<table name="table1">
<row data="data1" />
<row data="data2" />
<row data="data3" />
</table>
<table name="table2">
<row data="data4" />
<row data="data5" />
<row data="data6" />
</table>
</doc>
Or is there a way to merely dump the contents of a dataset in a
human-readable format? That would be the best of all. Right now I'm picking
through this thing blindly, not knowing how it's put together, and running
into walls on all four sides.