using 块会关闭数据库连接吗?

发布于 2024-10-21 03:32:49 字数 166 浏览 3 评论 0原文

using (DbConnection conn = new DbConnection())
{
    // do stuff with database
}

using 块会调用 conn.Close() 吗?

using (DbConnection conn = new DbConnection())
{
    // do stuff with database
}

Will the using block call conn.Close()?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

妳是的陽光 2024-10-28 03:32:49

是的,会的; DbConnection.Dispose() 的实现调用 Close()(其派生实现也是如此)。

Yes, it will; the implementation of DbConnection.Dispose() calls Close() (and so do its derived implementations).

叶落知秋 2024-10-28 03:32:49

是 - http://msdn.microsoft.com /en-us/library/system.data.sqlclient.sqlconnection.close.aspx

编辑:来自 Microsoft:“连接在 using 块末尾自动关闭。”

Yes - http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.close.aspx

edit: from Microsoft: "The connection is automatically closed at the end of the using block."

故事↓在人 2024-10-28 03:32:49

using 块将确保通过调用 Dispose() 方法销毁 DbConnection 对象。 Dispose() 方法将依次调用 Close() 方法,并且必须等待它完成关闭与数据库的连接。

A using block will ensure the destruction of DbConnection object by calling the Dispose() method. The Dispose() method will in turn call the Close() method and has to wait for it to finish closing the connection to the database.

记忆で 2024-10-28 03:32:49

当然是的,因为它将释放连接,并且在释放连接的内部逻辑之前调用关闭。

surely yes because it will dispose the connection and before disposing the inner logic of the connection calls the close.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文