更新查询不起作用asp.net

时间:2018-03-05 17:32:20

标签: c# asp.net webforms

我正在使用以下代码将数据更新到数据库中。 在调试时或在客户端屏幕上,控制台上没有错误消息,因为参数是正确的。这可能有什么问题?

SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["Conexion"].ConnectionString);
conn.Open();

SqlCommand actualizar = new SqlCommand();
actualizar.CommandType = CommandType.Text;
actualizar.CommandText = "update Proveedores set proveedores.nombre=@nombre,proveedores.razon_social=@razon,proveedores.rubro =@rubro,proveedores.banco=@banco,proveedores.cuenta_corriente=@cuenta_corriente where proveedores.rut_empresa=@rut";

actualizar.Parameters.AddWithValue("@rut",rut.ToString());
actualizar.Parameters.AddWithValue("@nombre",Nombre.Text);
actualizar.Parameters.AddWithValue("@razon", Razon.Text);
actualizar.Parameters.AddWithValue("@rubro",Rubro.Text);
actualizar.Parameters.AddWithValue("@banco",Banco.Text);
actualizar.Parameters.AddWithValue("@cuenta_corriente",Cuenta.Text);

actualizar.Connection = conn;
actualizar.ExecuteNonQuery();
conn.Close();

在测试中添加了图像

enter image description here

0 个答案:

没有答案