R
runningdog
Can one use the xmlDataDocument class to generate an xml document so that
relational data is nested.
eg.
<root>
<parent>row 1
<child> row 1</child>
<child> row 2</child>
</parent>
<parent>row 2
<child> row 3</child>
<child> row 4</child>
</parent>
</root>
best I can get is
<root>
<parent>row 1</parent>
<parent>row 2</parent>
<child> row 1</child>
<child> row 2</child>
<child> row 3</child>
<child> row 4</child>
</root>
TIA Steve
relational data is nested.
eg.
<root>
<parent>row 1
<child> row 1</child>
<child> row 2</child>
</parent>
<parent>row 2
<child> row 3</child>
<child> row 4</child>
</parent>
</root>
best I can get is
<root>
<parent>row 1</parent>
<parent>row 2</parent>
<child> row 1</child>
<child> row 2</child>
<child> row 3</child>
<child> row 4</child>
</root>
TIA Steve