What is the difference between connection.Close() and connection.Dispose()? [duplicate]

假装没事ソ 提交于 2019-11-29 06:31:22

Dispose also closes the connection if it hasn't been closed, but when calling Close, you can reopen the connection again. This is not possible when the connection is disposed.

In general, don't call Close, but simply call dispose implicitly by wrapping the creation of a connection in a using block:

using (var connection = new SqlConnection(...))
{
    // use connection here.
} // connection gets closed and disposed here.

Connection.Close() will simply close the connection to the server as defined in the connection string. The Connection can be used/re-opened after this point.

Connection.Dispose() will clean up completely, removing all unmanaged resources preventing that Connection from being used again. Once disposed is called you shouldn't try to use the object any more. Within Dispose(),Close()` will all most certainly be called too.

I would recommend using the using syntax like so if possible, to ensure things are cleaned up correctly:

using(SqlLiteConnection conn = new SqlLiteConnection(...))
{
   // Do work here
}

This will automatically dispose of the connection for you, regardless of an exception being thrown.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!