E
Eric
Hi Folks,
Can someone point me in the direction of some info on the differences
between the following two formats of XML? I work in an ORG that
utilizes both so I'd like to start gathering some data on which one is
better so that we may consolidate.
Any help would be much appreciated. Thanks!
<DATASET>
<DATAROW FNAME="Eric" LNAME="Langland" />
<DATAROW FNAME="Larry" LNAME="Ellison" />
</DATASET>
<DATASET>
<DATAROW>
<FNAME>Eric</FNAME>
<LNAME>Langland</LNAME>
</DATAROW>
<DATAROW>
<FNAME>Larry</FNAME>
<LNAME>Ellison</LNAME>
</DATAROW>
</DATASET>
Can someone point me in the direction of some info on the differences
between the following two formats of XML? I work in an ORG that
utilizes both so I'd like to start gathering some data on which one is
better so that we may consolidate.
Any help would be much appreciated. Thanks!
<DATASET>
<DATAROW FNAME="Eric" LNAME="Langland" />
<DATAROW FNAME="Larry" LNAME="Ellison" />
</DATASET>
<DATASET>
<DATAROW>
<FNAME>Eric</FNAME>
<LNAME>Langland</LNAME>
</DATAROW>
<DATAROW>
<FNAME>Larry</FNAME>
<LNAME>Ellison</LNAME>
</DATAROW>
</DATASET>