DataTabel

  • Thread starter Thread starter Paddy
  • Start date Start date
P

Paddy

Can one read / write a data tabel from / to a file without extra operations.
If so how is it done? If not, what is the alternative?

Many thanks.
 
Thank you. So my understanding is that one has to "serialize" - but to do so
is slow, and it would therefore be better to write one's own class. Right?
Paddy.
 
Hi Paddy,

The article gives advice to not use Datasets over the .NET Remoting because
it usually uses XML serialization to send the data, when binary
serialization is faster. That bit does not apply to your situation.

If you need to read and write objects to a file, easily and reliably, XML
serialization is the way to go.

--- Nick
 

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