时间入库问题:Incorrect datetime value: '' for column 'createTime' at row 1


背景:也许是各种jar包更新的太快的或者是MyEclipse的版本问题吧,老师在视频中编写的程序就可以讲时间写入到数据库,相同的代码,在我的本地就报错,WHY?遇到问题就寻找方法解决吧,毕竟“放过”不符合我的性格,下面就介绍一种简单的解决方法吧!


一、问题


出问题的程序:

user.setCreateTime(new Date());
user.setExpireTime(new Date());


控制台图片一张,问题是:Incorrect datetime value: '' for column 'createTime' at row 1




二、解决方案


解决方案五花八门,但是我只喜欢这种。

import java.text.SimpleDateFormat;
import java.util.Date;
import java.sql.Timestamp;
//取当前时间
Date nowdate=new Date();
//转换时间格式
SimpleDateFormat simpleDate = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 
user.setCreateTime(Timestamp.valueOf(simpleDate.format(nowdate)));
user.setExpireTime(Timestamp.valueOf(simpleDate.format(nowdate)));


执行后控制台的结果:


数据库的效果:

时间入库问题:Incorrect datetime value: '' for column 'createTime' at row 1_第1张图片


三、学习心得


1、发现问题,解决问题,不将就!

2、解决问题的方法有多种,适合自己的就是最好的。


时间入库问题:Incorrect datetime value: '' for column 'createTime' at row 1_第2张图片




你可能感兴趣的:(我的成长路の计算机)