BinaryDataSet?

  • Thread starter Thread starter SLE
  • Start date Start date
S

SLE

Hi there,

I am looking for an approach (or preferably some example code ;-) to "dump"
a DataSet in a compressed (binary?) and encrypted (simple algorithm will do)
file, reversable of course - i.e. a sort of "BinaryDataSet" derived from
DataSet and with overloaded methods for WriteXml() and LoadXml() or custom
(de)serializers.

Thanks,
 
SLE said:
Hi there,

I am looking for an approach (or preferably some example code ;-) to "dump"
a DataSet in a compressed (binary?) and encrypted (simple algorithm will do)
file, reversable of course - i.e. a sort of "BinaryDataSet" derived from
DataSet and with overloaded methods for WriteXml() and LoadXml() or custom
(de)serializers.

I ran into this solution using C#:
http://msdn.microsoft.com/msdnmag/issues/02/12/cuttingedge/default.aspx

But unfortunately VB.NET does not allow to implement interfaces in a derived
class if its base class already has an implementation -- damn :-(
 
Back
Top