using (SqlConnection connection1 = new SqlConnection(StringCon))
{
string sSQL = string.Format("UPDATE Guest SET FirstName=@Content WHERE GuestID=@GuestID");
SqlCommand MyCmd = new SqlCommand(sSQL, connection1);
SqlParameter param = MyCmd.Parameters.Add("@Content", SqlDbType.NVarChar);
param.Value = "Tony";
SqlParameter param1 = MyCmd.Parameters.Add("@GuestID", SqlDbType.NVarChar);
param1.Value = GuestID;
connection1.Open();
iResult = MyCmd.ExecuteNonQuery();
connection1.Close();
}
但是此代码无法执行,因为此错误
超时已过。在操作完成之前超时时间已过或服务器没有响应。该语句已终止。
为什么会出现错误以及如何修复它。