码迷,mamicode.com
首页 > 数据库 > 详细

SqlDataReader

时间:2018-10-03 23:24:21      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:turn   sele   from   man   open()   select   finally   else   service   

using (mycon)
{ //using语句与try catch finally结合使用
mycon.Open();
// MessageBox.Show("dakai");
string sql = "select * from [hf_zw].[dbo].[t_reservation] where reservation_id=566";
SqlCommand mycom = new SqlCommand(sql, mycon);
//声明datareader
SqlDataReader mydr;
mydr = mycom.ExecuteReader();
// DateTime dtcreate;
while (mydr.Read())
{
//if (DateTime.TryParse(mydr["reservation_service_time"].ToString(), out dtcreate))
//{
// textBox1.Text = dtcreate.ToShortDateString();
//}
textBox1.Text = ((DateTime)mydr["reservation_service_time"]).ToShortDateString();
}
}
}
else
{
MessageBox.Show("请勿快速操作!");
return;
}
}
catch
{

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

SqlDataReader

标签:turn   sele   from   man   open()   select   finally   else   service   

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

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