c#中如何在数据库中取出一个时间和当前时间对比计算时间
展开全部
晕,你是不知道怎么读出来,还是不知道怎么和当前时间比较?
追问
你会的话就帮我写写吧!
举个列子 在 room表中把datetime读出来 和当前时间比较 算出时间差 用天数表示
追答
分两部分来解答:
求相差天数 dt1.Subtract(dt2).TotalDays
从数据库中读出一个时间:
SqlConnection objConnection;
objConnection = new SqlConnection(strConnect); //strConnect是数据库连接字符串
objConnection.Open();
SqlCommand c = new SqlCommand();
c.CommandText = "select * from [room] ";
c.CommandType = CommandType.Text;
SqlConnection objConnection = new SqlConnection(strConnect);
objConnection.Open();
c.Connection = objConnection;
SqlDataReader dr = c.ExecuteReader();
if (dr.HasRows == true)
{
dr.Read();
DateTime datetime1 = dr["datetime"]; //这里datetime1就从数据库中取出来了。
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询