微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

C#中关于DBNULL的解释

1 概述

如下例子,你觉得有什么问题?如你能很快的找出问题,并且解决它,那么你可以跳过本篇文章,谢谢~~。

1 List<Base_Employee> ltPI = new List<Base_Employee>();
2 DataTable dt = GetBase_UserInfoToDataTable();
3 for (int i = 0; i < dt.Rows.Count; i++)
4    {
5          Base_Employee base_Employee= new Base_Employee();
6          base_Employee.EmployeeId= dt.Rows[i][EmployeeId].ToString();//EmployeeId为string类型
7          base_Employee.Age =(int)dt.Rows[i][Age];//Age为int类型
8          base_Employee.GraduationDate = (DateTime)dt.Rows[i][GraduationDate];//GraduationDate 为DateTime类型
9    }

想一分钟,OK,如果没想出来,可以往下看,下图标注处即为问题处。

ok,本篇文章就是来解决该问题的。也就是接下来要与大家分享的System.dbnULL类型

2 内容分享

2.1 在.NET中的,常用的基本数据类型

int,string,char等是大家比较熟悉的基本数据类型,但是大部分人都应该对System.dbnull比较陌生,然而,它又是解决如上问题的一大思路。

2.2 sqlServer中的常用数据类型

varchar,nvarchar,int,bit,decimal,datetime等,基本在与.net中的数据类型一一对应(varchar和nvarchar均对应.net中的string类型)

2.3 sqlServer中的常用数据类型的初始值

在.net中,当我们定义一个变量时,如果没给其赋初始值,那么系统会认初始值,如int 类型认为0,string类型认为string.Empty,一般情况,不同类型的认初始值是不同的;但是,在sqlServer中,几乎所有变量类型的初始值为NULL,也就要么为用户自定义的值,要么为系统认的值NUL。问题的关键就在这,以int类型为例,当在数据库中,我们没有给INT赋值时,其认值为NULL,当把这个值赋给.net中的整形变量时,就会引发异常。

2.4 System.dbnull是什么?

dbnull是一个类,继承Object,其实例为dbnull.Value,相当于数据中NULL值。

2.5 为什么 dbnull可以表示其他数据类型?

数据库中,数据存储以object来存储的。

2.6 如何解决如上问题

条件判断

可以用string类型是否为空,或dbnull是否等于NULL来判断


 1 List<Base_Employee> ltPI = new List<Base_Employee>(); 
 2 DataTable dt = GetBase_UserInfoToDataTable(); 
 3 for (int i = 0; i < dt.Rows.Count; i++) 
 4    { 
 5          Base_Employee base_Employee= new Base_Employee(); 
 6          base_Employee.EmployeeId= dt.Rows[i][EmployeeId].ToString();//EmployeeId为string类型 
 7          //base_Employee.Age =(int)dt.Rows[i][Age];//Age为int类型 
 8           if (dt.Rows[i][Age]!=System.dbnull.Value) 
 9                 {
 10                     base_Employee.Age = int.Parse(dt.Rows[i][Age].ToString());
 11                     //base_Employee.Age = (int)dt.Rows[i][Age];//拆箱
 12                     //base_Employee.Age =Convert.ToInt16( dt.Rows[i][Age]);
 13                 }
 14          //base_Employee.GraduationDate = (DateTime)dt.Rows[i][GraduationDate];//GraduationDate 为DateTime类型
 15         if (dt.Rows[i][GraduationDate].ToString()!=)
 16                 {
 17                     base_Employee.GraduationDate = Convert.ToDateTime(dt.Rows[i][GraduationDate]);
 18                     base_Employee.GraduationDate = (DateTime)dt.Rows[i][GraduationDate];
 19                 }
 20    }

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐