vote up 12 vote down star
3

DataSet and DataTable both implement IDisposable, so, by conventional best practices, I should call their Dispose() methods.

However, from what I've read so far, DataSet and DataTable don't actually have any unmanaged resources, so Dispose() doesn't actually do much.

Plus, I can't just use using(DataSet myDataSet...) because DataSet has a collection of DataTables.

So, to be safe, I'd need to iterate through myDataSet.Tables, dispose of each of the DataTables, then dispose of the DataSet.

So, is it worth the hassle to call Dispose() on all of my DataSets and DataTables?

Addendum:

For those of you who think that DataSet should be disposed: In general, the pattern for disposing is to use using or try..finally, because you want to guarantee that Dispose() will be called.

However, this gets ugly real fast for a collection. For example, what do you do if one of the calls to Dispose() thrown an exception? Do you swallow it (which is "bad") so that you can continue on to dispose the next element?

Or, do you suggest that I just call myDataSet.Dispose(), and forget about disposing the DataTables in myDataSet.Tables?

flag

Wow, hot topic. Great question. It's very helpful to be able to see different points of view. – DOK May 27 at 0:10

9 Answers

vote up 2 vote down check

Here are a couple of discussions explaining why Dispose is not necessary for a DataSet.

To Dispose or Not to Dispose ? "The Dispose method in DataSet exists ONLY because of side effect of inheritance-- in other words, it doesn't actually do anything useful in the finalization."

Should Dispose be called on DataTable and DataSet objects? includes some explanation from an MVP: "the system.data namespace (ADONET) does not contain unmanaged resources. Therefore there is no need to dispose any of those as long as you have not added yourself something special to it."

Understanding the Dispose method and datasets? with comm:ent from authority Scott Allen: "In pratice we rarely Dispose a DataSet because it offers little benefit"

So, the consensus there is that there is currently no good reason to call Dispose on a DataSet.

link|flag
1  
The links provided totally missed the point that DataTable is a type of Finalizable object. Please see Nariman's answer below. – Herman Oct 23 at 15:03
vote up 0 vote down

First of all I would check what Dispose does with a DataSet. Maybe using the reflector from redgate will help.

link|flag
The implementation is not important – Greg Dean May 26 at 23:30
vote up 0 vote down

Datasets implement IDisposable thorough MarshalByValueComponent, which implements IDisposable. Since datasets are managed there is no real benefit to calling dispose.

link|flag
It may now, who knows what it will do later. – Greg Dean May 26 at 23:31
vote up 0 vote down

I call dispose anytime an object implements IDisposeable. It's there for a reason.

DataSets can be huge memory hogs. The sooner they can be cleaned up, the better.

link|flag
1  
Calling dispose doesn't speed up the reclaiming of memory, to do that you would have to manually start the garbage collector which is generally a bad plan. – Tetraneutron May 26 at 23:22
If Dispose sets a bunch of references to null, it can cause objects to be candidates for collection that might otherwise be skipped. – Greg Dean May 26 at 23:29
The point of the Dispose is not to clear up the memory of managed objects - that is the garbage collector's job. The point is to clear up unmanaged objects. There seems to be evidence that DataSets do not have any unmanaged references so theoretically don't need to have disposed called them. That being said, I've never been in a situation where I've had to go out of my way to call Dispose - I would just call it anyway. – cbp May 26 at 23:37
The primary use of IDisposable is to release unmanaged resources. Often times it also modifies state in a manner which makes sense for a disposed instance. (i.e. properties set to false, references set to null, etc.) – Greg Dean May 26 at 23:50
vote up 6 vote down

You should assume it does something useful and call Dispose even if it does nothing in current . NET Framework incarnations, there's no guarantee it will stay that way in future versions leading to inefficient resource usage.

link|flag
There's no guarantee that it will implement IDisposable in the future, either. I would agree with you if it were as simple as using(...), but in the case of DataSet, it seems like a lot of hassle for nothing. – mbeckish May 27 at 0:28
6  
It fairly safe to assume that it will always implement IDisposable. Adding or removing the interface is a breaking change, whereas changing the implementation of Dispose is not. – Greg Dean May 27 at 0:35
1  
Also, a different provider may have an implementation that actually does something with IDisposable. – Matt Spradley May 27 at 13:22
vote up 0 vote down

If your intention or the context of this question is really garbage collection, then you can set the datasets and datatables to null explicitly or use the keyword using and let them go out of scope. Dispose does not do much as Tetraneutron said it earlier. GC will collect dataset objects that are no longer referenced and also those that are out of scope.

I really wish SO forced people down voting to actually write a comment before downvoting the answer.

link|flag
+ 1 I guess some folks don't want to allow others to consider different points of view. – DOK May 26 at 23:52
1  
down voting, in no way disallows people from considering different points of view. – Greg Dean May 27 at 0:19
vote up 5 vote down

Even if object has no unmanaged resources, disposing might help GC by breaking object graphs. In general, if object implements IDisposable then Dispose() should be called.

Whether Dispose() actually does something or not depends on given class. In case of DataSet, Dispose() implementation is inherited from MarshalByValueComponent. It removes itself from container and calls Disposed event. The source code is below (disassembled with .NET Reflector):

protected virtual void Dispose(bool disposing)
{
    if (disposing)
    {
        lock (this)
        {
            if ((this.site != null) && (this.site.Container != null))
            {
                this.site.Container.Remove(this);
            }
            if (this.events != null)
            {
                EventHandler handler = (EventHandler) this.events[EventDisposed];
                if (handler != null)
                {
                    handler(this, EventArgs.Empty);
                }
            }
        }
    }
}
link|flag
Indeed. I saw some code quite recently where lots of DataTables were created in a very large loop without being Disposed. This lead to all of the memory being consumed on the computer and the process crashing as it ran out of memory. After I told the developer to call dispose on the DataTable the problem went away. – RichardOD May 27 at 17:56
vote up 3 vote down

Do you create the DataTables yourself? Because iterating through the children of any Object (as in DataSet.Tables) is usually not needed, as it's the job of the Parent to dispose all it's child members.

Generally, the rule is: If you created it and it implements IDisposable, Dispose it. If you did NOT create it, then do NOT dispose it, that's the job of the parent object. But each object may have special rules, check the Documentation.

For .net 3.5, it explicitly says "Dispose it when not using anymore", so that's what I would do.

link|flag
1  
From what I understand, the general consensus is that an object should dispose its own unmanaged resources. However, a collection of IDisposable objects will not in general iterate through its elements to dispose each one, because there might be other references to its elements outside of the collection: stackoverflow.com/questions/496722/… – mbeckish May 27 at 12:43
True, Collections are always something I consider special because they are usually not "doing" anything, they are merely... Containers, so I never bothered about that. – Michael Stum May 27 at 14:24
vote up 8 vote down

There are a lot of misleading and generally very poor answers on this - anyone who's landed here should ignore the noise and read the references below carefully.

Without a doubt, Dispose should be called on any Finalizable objects.

DataTables are Finalizable.

Calling Dispose significantly speeds up the reclaiming of memory.

MarshalByValueComponent calls GC.SuppressFinalize(this) in its Dispose() - skipping this means having to wait for dozens if not hundreds of Gen0 collections before memory is reclaimed:

With this basic understanding of finalization we can already deduce some very important things:

First, objects that need finalization live longer than objects that do not. In fact, they can live a lot longer. For instance, suppose an object that is in gen2 needs to be finalized. Finalization will be scheduled but the object is still in gen2, so it will not be re-collected until the next gen2 collection happens. That could be a very long time indeed, and, in fact, if things are going well it will be a long time, because gen2 collections are costly and thus we want them to happen very infrequently. Older objects needing finalization might have to wait for dozens if not hundreds of gen0 collections before their space is reclaimed.

Second, objects that need finalization cause collateral damage. Since the internal object pointers must remain valid, not only will the objects directly needing finalization linger in memory but everything the object refers to, directly and indirectly, will also remain in memory. If a huge tree of objects was anchored by a single object that required finalization, then the entire tree would linger, potentially for a long time as we just discussed. It is therefore important to use finalizers sparingly and place them on objects that have as few internal object pointers as possible. In the tree example I just gave, you can easily avoid the problem by moving the resources in need of finalization to a separate object and keeping a reference to that object in the root of the tree. With that modest change only the one object (hopefully a nice small object) would linger and the finalization cost is minimized.

Finally, objects needing finalization create work for the finalizer thread. If your finalization process is a complex one, the one and only finalizer thread will be spending a lot of time performing those steps, which can cause a backlog of work and therefore cause more objects to linger waiting for finalization. Therefore, it is vitally important that finalizers do as little work as possible. Remember also that although all object pointers remain valid during finalization, it might be the case that those pointers lead to objects that have already been finalized and might therefore be less than useful. It is generally safest to avoid following object pointers in finalization code even though the pointers are valid. A safe, short finalization code path is the best.

Take it from someone who's seen 100s of MBs of non-referenced DataTables in Gen2: this is hugely important and completely missed by the answers on this thread.

References:

[1] - http://msdn.microsoft.com/en-us/library/ms973837.aspx

[2] - http://vineetgupta.spaces.live.com/blog/cns!8DE4BDC896BEE1AD!1104.entry http://www.dotnetfunda.com/articles/article524-net-best-practice-no-2-improve-garbage-collector-performance-using-finalizedispose-pattern.aspx

[3] - http://codeidol.com/csharp/net-framework/Inside-the-CLR/Automatic-Memory-Management/

link|flag
Good point. How do you usually structure your code when you have a DataSet with many DataTables? Tons of nested using statements? A single try..finally to clean it all up at once? – mbeckish Oct 21 at 21:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.