Lightweight Dataset

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am planning to design a lightweight dataset, any links or any pointers will
be helpful.
 
Mahesh

What do you mean with a lightweight dataset.

I seems that those heavyweights experts don't understand you.

Cor
 
Me too!
It's an interesting question though. A "lightweight" data structure could be
implemented as an array, a collection, an XML structure or a flat file.

--
____________________________________
William (Bill) Vaughn
Author, Mentor, Consultant
Microsoft MVP
www.betav.com/blog/billva
www.betav.com
Please reply only to the newsgroup so that others can benefit.
This posting is provided "AS IS" with no warranties, and confers no rights.
__________________________________
 
Yup.

The first question though is - "What are you willing to give up, that a
dataset gives you".

I really think a disconnected data architecture should be plugin based - so
you can make it as heavy, or as light as you need it to be.

So editing ability - that's a plugin.
Track changes/row versions ability - that's a plugin.
Xml interoperability - that's a plugin.

Oh wait did I hear someone wants savepoints in editing a dataset? - Dude you
could write your own plugin - (So on so forth).

That'd be a nice n clean dataset design IMO for ADO.NET x.y. Frankly, it
should be a brand new object type - MonkeyPoo.

- Sahil Malik [MVP]
http://codebetter.com/blogs/sahil.malik/
 
Back
Top