在datetime c#中格式化字符串以在MYSQL datetime列中插入

前端之家收集整理的这篇文章主要介绍了在datetime c#中格式化字符串以在MYSQL datetime列中插入前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有这样的代码

AutoParkDataDataContext Db = new AutoParkDataDataContext();
Dailyreport dailyRep = new Dailyreport();
string time = Convert.ToDateTime("10-10-2014 15:00:00");
dailyRep.order_time = time;
Db.Dailyreports.InsertOnSubmit(dailyRep);
Db.SubmitChanges();

当我在DailyReport表中看到它时,它只显示日期(“10-10-2014 00:00:00:00”),因此时间被忽略.我怎么能解决它?
列类型是DateTime.

最佳答案
将日期或日期时间插入MysqL快速/简单方法是使用格式’yyyy-mm-dd’或日期时间为’yyyy-mm-dd hh:mm:ss’.

试试这个

     DateTime theDate = DateTime.Now;
     theDate.ToString("yyyy-MM-dd H:mm:ss");

让你的sql看起来像这样.

     insert into mytable (date_time_field) value ('2013-09-09 03:44:00');
原文链接:https://www.f2er.com/mysql/434190.html

猜你在找的MySQL相关文章