Does the using statement really call the close method when used with a database connection object? The MSDN documentation says it ensures that the Dispose method is called but makes no mention of close. I see posts on Stack Overflow where people say that it does both. Does someone have a concrete answer one way or another on this from Microsoft or other solid proof that it does?
|
|
Here is the "Dispose" method of the SqlConnection class:
As you can see, it does indeed call Close() |
||
|
|
|
|
If you use a But
And if you choose to use |
||
|
|
|
|
Calling the A concrete example is the "This implementation of Close calls the Dispose method passing a true value." |
|||
|
|
|
|
Any Class can have a Dispose method if it implements the IDisposable interface. MSDN says: "The primary use of this interface is to release unmanaged resources." It is left to the implementor to decide what exactly that means. In the case of a DBConnection, disposing also means closing connection... |
||
|
|
|
Bear in mind though that all Close() does is release the connection back to the connection pool. You will still notice an active connection to the database in SQL Server. If you need to ensure that this is closed as well, you might want to consider ClearAllPools or ClearPool From MSDN Connection pooling reduces the number of times that new connections need to be opened. The pooler maintains ownership of the physical connection. It manages connections by keeping alive a set of active connections for each given connection configuration. Whenever a user calls Open on a connection, the pooler looks to see if there is an available connection in the pool. If a pooled connection is available, it returns it to the caller instead of opening a new connection. When the application calls Close on the connection, the pooler returns it to the pooled set of active connections instead of actually closing it. Once the connection is returned to the pool, it is ready to be reused on the next Open call. |
||
|
|
|
Close and Dispose do the same thing. They added Close simply for readability since to say that you "Closed the connection" is more natural. |
||
|
|
