dataset to xml

  • Thread starter Thread starter helpful sql
  • Start date Start date
H

helpful sql

Hi all,
I have a DataSet with one table that has more than one row. I need to
programmatically generate simple xml file from it. I need to include data
from only one row.

Example:

<datasetname>
<tablename>
<column1name>value</column1name>
<column2name>value</column2name>
<column3name>value</column3name>
</tablename>
</databasename>

How can I do this?

Thanks.
 
helpful sql said:
Hi all,
I have a DataSet with one table that has more than one row. I need to
programmatically generate simple xml file from it. I need to include data
from only one row.

Example:

<datasetname>
<tablename>
<column1name>value</column1name>
<column2name>value</column2name>
<column3name>value</column3name>
</tablename>
</databasename>

How can I do this?

Thanks.
dim ds as dataset = yourdataset
ds.writexml("strpathandfilename"))
 

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