SQL Server数据库不会更新

时间:2018-01-29 09:50:56

标签: c# sql-server parameters sqlconnection

在程序中建立了成功的连接。程序中没有异常抛出。但是数据库没有更新。多个参数将添加到连接中。

演员阵容有问题吗?

 SqlConnection cnn = new SqlConnection(connectionString);
 cnn.Open();

 DateTime Todays = DateTime.Today;
 int Num = 0;

 SqlCommand command = new SqlCommand("UPDATE   tblMusic SET  Dt_last_played = convert(datetime,@1,5) ,  no_of_times = @3  WHERE Location = @5 ", cnn);

 command.Parameters.Add(new SqlParameter("1", Todays));            
 command.Parameters.Add(new SqlParameter("3", Num));          
 command.Parameters.Add(new SqlParameter("5", MediaElementObj.Source.ToString()));

 command.ExecuteNonQuery();

即使没有暂停进程并且未显示错误,也不会更新数据库。

0 个答案:

没有答案