Connecting Tech Pros Worldwide Help | Site Map

writing a tab delimited text file

The Bear
Guest
 
Posts: n/a
#1: Nov 15 '05
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


Nicholas Paldino [.NET/C# MVP]
Guest
 
Posts: n/a
#2: Nov 15 '05

re: writing a tab delimited text file


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.


--
- Nicholas Paldino [.NET/C# MVP]
- mvp@spam.guard.caspershouse.com

"The Bear" <buck_roggers@hotmail.com> wrote in message
news:eQKPb.15620$U77.1222990@news20.bellglobal.com ...[color=blue]
> 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[/color]
changes[color=blue]
> from the dataset to a tab delimited text file. How do I write each record[/color]
to[color=blue]
> that text file.
>
> If anyone one knows I would really appreciate the help
>
> TB
>
>[/color]


Closed Thread