gpt4 book ai didi

c# - C# using 语句、SQL 和 SqlConnection

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

是否可以使用 using 语句 C# SQL?

private static void CreateCommand(string queryString,
string connectionString)
{
using (SqlConnection connection = new SqlConnection(
connectionString))
{
SqlCommand command = new SqlCommand(queryString, connection);
command.Connection.Open();
command.ExecuteNonQuery();
}
}

如果打开连接时出错怎么办?

using语句是try和finally
没有收获

因此,如果我在 using 括号外捕获,catch 是否会捕获连接打开错误?

如果不是,如何使用上面显示的 using 语句来实现?

最佳答案

可以在 C# 中执行此操作(我还看到该代码在 MSDN http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.executenonquery.aspx 中准确显示)。但是,如果您需要采取防御措施,例如记录有助于在生产环境中进行故障排除的潜在异常,则可以采用以下方法:

private static void CreateCommand(string queryString,
string connectionString)
{
using (SqlConnection connection = new SqlConnection(
connectionString))
{
try
{
SqlCommand command = new SqlCommand(queryString, connection);
command.Connection.Open();
command.ExecuteNonQuery();
}
catch (InvalidOperationException)
{
//log and/or rethrow or ignore
}
catch (SqlException)
{
//log and/or rethrow or ignore
}
catch (ArgumentException)
{
//log and/or rethrow or ignore
}
}
}

关于c# - C# using 语句、SQL 和 SqlConnection,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3079098/

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