码迷,mamicode.com
首页 > 其他好文 > 详细

更改数据,ExecuteNonQuery()

时间:2018-10-03 22:26:23      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:vat   set   return   date   out   tostring   open   show   日期格   

using (mycon)
{
mycon.Open();

string MyTime;
DateTime dtDate;
MyTime = textBox1.Text.ToString();
string sql;
if (!DateTime.TryParse(MyTime, out dtDate))
{
MessageBox.Show("日期格式不正确!");
}
else
{
sql = "update [hf_zw].[dbo].[t_reservation] set reservation_service_time= ‘" + MyTime + "‘,state=1 where reservation_id=566";
SqlCommand mycom = new SqlCommand(sql, mycon);

//更改数据,ExecuteNonQuery()
mycom.ExecuteNonQuery();
MessageBox.Show("修改成功!");
}


}

}
else
{
MessageBox.Show("请勿快速操作!");
return;
}

}
catch
{

}
finally
{
mycon.Close();
// Console.WriteLine("成功关闭");
}

更改数据,ExecuteNonQuery()

标签:vat   set   return   date   out   tostring   open   show   日期格   

原文地址:https://www.cnblogs.com/asdyzh/p/9739222.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!