我不是异步操作方面的专家,希望有人能帮我指出问题。
在我的一种方法中,我编写了一个包装器,
public static async Task<int> ExecuteNonQueryRawSQLAsync(string sqlStatement)
{
int _returnValue = -1;
using (SqlConnection _conn = new SqlConnection("connectionString"))
{
using (SqlCommand _comm = new SqlCommand())
{
_comm.Connection = _conn;
_comm.CommandText = sqlStatement;
_comm.CommandType = CommandType.Text;
// other codes on setting parameter
try
{
await _conn.OpenAsync();
_returnValue = Convert.ToInt32(await _comm.ExecuteNonQueryAsync());
}
catch (Exception)
{
throw;
}
}
}
return _returnValue;
}
在我的 UI 中,我调用这样的方法,
int _recordsAffected = await MyClass.ExecuteNonQueryRawSQLAsync("INSERT....");
为了测试它是否真的有效,我尝试在连接字符串中提供一个无效的数据库服务器地址,以便它继续搜索直到它抛出异常。
当程序仍在连接时,UI 冻结。我的包装中缺少什么?还是我需要做任何其他需要的初始化?