无法将类型“System.Data.SqlClient.SqlDataReader”隐式转换为“System.DateTime”

DateTimeres;stringmycnn="DataSource=.;InitialCatalog=HotelReservation;IntegratedSecur... DateTime res;
string mycnn = "Data Source=.;Initial Catalog=HotelReservation;Integrated Security=True";
SqlConnection myconnection = new SqlConnection(mycnn);
string str = "select Max(Outtime) from Dingdan where Room='"+ DropDownList2.SelectedItem.Value+"'";
SqlCommand mycommand = new SqlCommand(str,myconnection);
mycommand.Connection.Open();
SqlDataReader myreader = mycommand.ExecuteReader();
if (myreader.Read())
{
res = mycommand.ExecuteReader();
}
else
{
Page.RegisterStartupScript("", "<script>alert('该房间在该时间已经被预定!')</script>");
mycommand.Connection.Close();

}
return res;
展开
 我来答
落月Prc
2010-01-05 · TA获得超过2789个赞
知道大有可为答主
回答量:2011
采纳率:100%
帮助的人:2412万
展开全部
把mycommand.ExecuteReader();
改为:
res = (DateTime)myreader[0];
myreader.Close();//记得加这句,不然可能会出错。
gaobanana
2010-01-05 · TA获得超过172个赞
知道答主
回答量:165
采纳率:0%
帮助的人:0
展开全部
if (myreader.Read())
{
res = mycommand.ExecuteReader();
}
修改 res=myreader.GetDateTime(int i); i为取得的索引号
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
yzy_130
2010-01-05 · TA获得超过810个赞
知道小有建树答主
回答量:402
采纳率:0%
帮助的人:488万
展开全部
//改为
if (myreader.Read())
{
res = DateTime.Parse(myreader["数据库中要查询的列名"]);
}
//最后要加myreader.Close();
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式