gpt4 book ai didi

c# - ExecuteReader(CommandBehavior.CloseConnection) 会始终关闭连接吗?

转载 作者:可可西里 更新时间:2023-11-01 09:08:17 24 4
gpt4 key购买 nike

这样写这个辅助方法安全吗?它会一直关闭连接吗?我知道如果一切顺利,它会,但 ExecuteReader 会关闭连接,即使它抛出吗?

    public static IEnumerable<DbDataRecord> ExecuteSelect(string commandText, DbConnection conn)
{
using (DbCommand cmd = conn.CreateCommand())
{
cmd.CommandText = commandText;
conn.Open();
using (DbDataReader reader = cmd.ExecuteReader(CommandBehavior.CloseConnection))
{
foreach (DbDataRecord record in reader) { yield return record; }
}
}
}

最佳答案

是的,即使抛出异常也会关闭连接。如果您不指定 CommandBehavior.CloseConnection 并关闭连接,您的调用代码将无法访问阅读器的内容。

同样来自 MSDN:

When the command is executed, the associated Connection object is closed when the associated DataReader object is closed.

您应该确保阅读器在您完成后关闭。所有这一切的好处是你已经将它包裹在一个 using 语句中并且你没有使用 try/catch/finally 在这种情况下读取器将关闭然后将关闭数据库连接。

关于c# - ExecuteReader(CommandBehavior.CloseConnection) 会始终关闭连接吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10519273/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com