Previous topicNext topic
Help > 使用指南 > 项目迁移 > MySQL >
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=