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.
 
Back
Top