C#中关于DBNULL的解释

互联网 17-10-5
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    }

以上就是C#中关于DBNULL的解释的详细内容,更多内容请关注技术你好其它相关文章!

来源链接:
免责声明:
1.资讯内容不构成投资建议,投资者应独立决策并自行承担风险
2.本文版权归属原作所有,仅代表作者本人观点,不代表本站的观点或立场
标签: DBNULL
上一篇:php获取远程图片并下载保存到本地的方法分析 下一篇:C#中foreach与yield的实例详解

相关资讯