Unable to convert MySQL date/time value to System.DateTime问题解决方案

Posted congcongdi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Unable to convert MySQL date/time value to System.DateTime问题解决方案相关的知识,希望对你有一定的参考价值。

原因:可能是该字段(date/datetime)的值默认缺省值为:0000-00-00/0000-00-00 00:00:00,这样的数据读出来转换成System.DateTime时就会有问题;

解决办法:在连接字符串中添加Allow Zero Datetime=True

private static String mysqlcon = "Database=.;Data Source=127.0.0.1;User Id=root; password=****;CharSet=utf8;Allow Zero Datetime=True";

若需要对此列数据进行判断处理,我是这样写的:

 if (dts.Rows[i]["StartDate"].ToString().Equals("0000-00-00 00:00:00") || dts.Rows[i]["EndDate"].ToString().Equals("0000-00-00 00:00:00"))

 

以上是关于Unable to convert MySQL date/time value to System.DateTime问题解决方案的主要内容,如果未能解决你的问题,请参考以下文章

Unable to convert MySQL date/time value to System.DateTime问题解决方案

每日踩坑 2018-12-25 Unable to convert MySQL date/time value to System.DateTime异常

Windows下gm打水印老是报gm convert: Unable to read font (n019003l.pfb)问题

springboot配置jpa提示Unable to resolve name [mysql] as strategy

[Err] 1168 - Unable to open underlying table which is differently defined or of non-MyISAM type or d

Mysql错误Unable to connect to remote host. Catalog download has failed.