Is it necessary to manually close and dispose of SqlDataReader?(是否需要手动关闭和处置 SqlDataReader?)
问题描述
我在这里使用遗留代码,并且有许多 SqlDataReader
实例从未关闭或处置.连接已关闭,但我不确定是否需要手动管理阅读器.
I'm working with legacy code here and there are many instances of SqlDataReader
that are never closed or disposed. The connection is closed but, I am not sure if it is necessary to manage the reader manually.
这会导致性能下降吗?
推荐答案
尽量避免这样使用阅读器:
Try to avoid using readers like this:
SqlConnection connection = new SqlConnection("connection string");
SqlCommand cmd = new SqlCommand("SELECT * FROM SomeTable", connection);
SqlDataReader reader = cmd.ExecuteReader();
connection.Open();
if (reader != null)
{
while (reader.Read())
{
//do something
}
}
reader.Close(); // <- too easy to forget
reader.Dispose(); // <- too easy to forget
connection.Close(); // <- too easy to forget
相反,将它们包装在 using 语句中:
Instead, wrap them in using statements:
using(SqlConnection connection = new SqlConnection("connection string"))
{
connection.Open();
using(SqlCommand cmd = new SqlCommand("SELECT * FROM SomeTable", connection))
{
using (SqlDataReader reader = cmd.ExecuteReader())
{
if (reader != null)
{
while (reader.Read())
{
//do something
}
}
} // reader closed and disposed up here
} // command disposed here
} //connection closed and disposed here
using 语句将确保正确处理对象并释放资源.
The using statement will ensure correct disposal of the object and freeing of resources.
如果您忘记了,那么您将把清理工作留给垃圾收集器,这可能需要一段时间.
If you forget then you are leaving the cleaning up to the garbage collector, which could take a while.
这篇关于是否需要手动关闭和处置 SqlDataReader?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:是否需要手动关闭和处置 SqlDataReader?


基础教程推荐
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- rabbitmq 的 REST API 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 将 XML 转换为通用列表 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01
- c# Math.Sqrt 实现 2022-01-01