在C#windows窗体中如何获取数据库中的出生日期?
在windows窗体中已知有一个日期类型的控件dateTimePicker1然后在SQL数据库中Student表中定义了一个日期类型列birthday现在已经前面加了这个...
在windows窗体中已知有一个日期类型的控件dateTimePicker1
然后在SQL数据库中Student表中定义了一个日期类型列 birthday
现在已经前面加了这个string sql = string.Format("select * from Student where studentid ='{0}'", s.studentNo.Text.ToString());
然后要在窗体中读取只有这个日期这句:s.dateTimePicker1.Value =Convert.ToDateTime( red["birthday"]);运行时报错:
System.InvalidCastException”类型的未经处理的异常在 mscorlib.dll 中发生
其他信息: 对象不能从 DBNull 转换为其他类型。
各位,该如何是好啊!? 展开
然后在SQL数据库中Student表中定义了一个日期类型列 birthday
现在已经前面加了这个string sql = string.Format("select * from Student where studentid ='{0}'", s.studentNo.Text.ToString());
然后要在窗体中读取只有这个日期这句:s.dateTimePicker1.Value =Convert.ToDateTime( red["birthday"]);运行时报错:
System.InvalidCastException”类型的未经处理的异常在 mscorlib.dll 中发生
其他信息: 对象不能从 DBNull 转换为其他类型。
各位,该如何是好啊!? 展开
1个回答
2015-07-08
展开全部
在转换的时候先判断一下,如果为null,则赋值一个默认值,如果not null ,再转换啊
if(!string.IsNull(red["birthday").ToString())
{
s.dateTimePicker1.Value =Convert.ToDateTime( red["birthday"].ToString());
}
else
{
s.dateTimePicker1.Value=Convert.ToDateTime("你设置的默认生日");
}
追问
报敬:string 并不包含string.IsNull的定义
追答
string.IsNullOrEmpty()
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |