Exporting a dataset table as a text file

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there an easy way to export a dataset table as a text file such as a .net
class. If not do you have any suggestions?

Thanks, Justin.
 
What format do you want the output as. A DataSet is XML, so you could
output the XML. If you want something like a row per line where each column
is separated, then you might have to do that yourself. Should not be hard
though as all you have to do is iterate through the rows and columns.
 

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