when not strongly typed datasets?

  • Thread starter Thread starter Brad Williams
  • Start date Start date
B

Brad Williams

I'm wondering: When are regular datasets preferable over strongly typed
datasets? What are some opinions?

Brad Williams
 
when you need to gen them on the fly. I have a Compact Framework App that
can't go down if I lose a connection...so everything is serialized. So
configuration settings need to have their state maintained and since users
can add them (configuration settings) on the fly, I can't use a STD (that
and the CF doesn't support them). THe point remains the same, if you don't
know in advance what your structure will be, STD's aren't going to do it for
you.

HTH,

Bill
 
Back
Top