On Nov 26, 11:19 am, "Jon Skeet [C# MVP]" <sk...@pobox.com> wrote:
> On Nov 26, 10:11 am, cppques...@googlemail.com wrote:
>
> <snip>
>
> > The object reference required related to the object on which Fill was
> > called (this).
>
> > However: Why there is no tebale adapter hold by the MMSDataSet
> > as it holds the table itself as well?
>
> The adapter populates the data set, but there's no reason for the data
> set to keep hold of the table adapter. In particular, a single table
> adapter could populate many data sets. It's just a conduit between the
> in memory data and the database, really.
>
> Jon
Thanks for the answer.
So everytime a TA is needed I should create it new?
That leaves no big overhead? Or is there even a benefit
(e.g. releasing memory used for the fill)?
Marc
|