C#中关于DBNULL的解释

C#中关于DBNULL的解释,第1张

概述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    }
总结

以上是内存溢出为你收集整理的C#中关于DBNULL的解释全部内容,希望文章能够帮你解决C#中关于DBNULL的解释所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1211087.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存