writing a tab delimited text file

  • Thread starter Thread starter The Bear
  • Start date Start date
T

The Bear

I have populated a dataset with a tab delimited text file.
When the changes are made in the dataset, I then want to write those changes
from the dataset to a tab delimited text file. How do I write each record to
that text file.

If anyone one knows I would really appreciate the help

TB
 
TB,

I believe that there is an OLEDB text provider that will allow you to
read delimited files and get result sets back from them. You can use this
with the classes in System.Data.OleDb to get the contents, and then use an
OleDbDataAdapter to write the contents back to the same file, or another
file.

Hope this helps.
 
Back
Top