C#数据库操作时,优先使用using还是try...catch,为什么?
如题。对于数据库操作有哪些常见的异常?下面是我程序中的代码,我如何确定它是否会出现异常?using(SqlConnectionconnect=newSqlConnecti...
如题。
对于数据库操作有哪些常见的异常?下面是我程序中的代码,我如何确定它是否会出现异常?
using (SqlConnection connect = new SqlConnection(conStr))
{
connect.Open();
using (SqlCommand command = new SqlCommand("addCardFailed",connect))
{
command.CommandType = CommandType.StoredProcedure;
command.Parameters.Add("@userNumber",SqlDbType.Char);
command.Parameters["@userNumber"].Value=userNumber;
command.Parameters.Add("@productId",SqlDbType.VarChar);
command.Parameters["@productId"].Value = productId;
command.Parameters.Add("@doaction",SqlDbType.TinyInt);
command.Parameters["@doaction"].Value = 0;
command.ExecuteNonQuery();
}
} 展开
对于数据库操作有哪些常见的异常?下面是我程序中的代码,我如何确定它是否会出现异常?
using (SqlConnection connect = new SqlConnection(conStr))
{
connect.Open();
using (SqlCommand command = new SqlCommand("addCardFailed",connect))
{
command.CommandType = CommandType.StoredProcedure;
command.Parameters.Add("@userNumber",SqlDbType.Char);
command.Parameters["@userNumber"].Value=userNumber;
command.Parameters.Add("@productId",SqlDbType.VarChar);
command.Parameters["@productId"].Value = productId;
command.Parameters.Add("@doaction",SqlDbType.TinyInt);
command.Parameters["@doaction"].Value = 0;
command.ExecuteNonQuery();
}
} 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询