Unable to convert MySQL date/time value to System.DateTime

后端 未结 9 879
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-08 22:04

I am using ibatis and C#. i get a result from a select query that has CreatedDate as one of the field. The Datatype of CreatedDate in Mysql is Date. I assign the result set

9条回答
  •  心在旅途
    2020-12-08 22:48

    MySqlConnection connect = new MySqlConnection("server=localhost; database=luttop; user=root; password=1234; pooling = false; convert zero datetime=True");
    

    Adding convert zero datetime=True to the connection string will automatically convert 0000-00-00 Date values to DateTime.MinValue().

    that's SOLVED

提交回复
热议问题