J
Jay
In VB.NET (Studio 2005) I need to loop thru a result set returned from a
stored proc and generate XML for each row. E.g. exex procWhatever returns:
custno, lname, fname, address
2, Doe, John, 123 4th St.
3, Smith, Bill, 567 8th St.
4, Grant, Terry, 333 Wherever St.
For each on of those rows I need to generate (string):
<Customer>
<custno>2</custno>
<lname>Doe</lname>
<fname>John</fname>
<address>123 4th st.</address>
</customer>
....
Any advice, tutorials, etc. would be greatly appreciated. Thank you very
much.
stored proc and generate XML for each row. E.g. exex procWhatever returns:
custno, lname, fname, address
2, Doe, John, 123 4th St.
3, Smith, Bill, 567 8th St.
4, Grant, Terry, 333 Wherever St.
For each on of those rows I need to generate (string):
<Customer>
<custno>2</custno>
<lname>Doe</lname>
<fname>John</fname>
<address>123 4th st.</address>
</customer>
....
Any advice, tutorials, etc. would be greatly appreciated. Thank you very
much.