我正在尝试使用ORM将日期时间插入到mysql数据库中。
我收到此错误:
Data truncation: Incorrect datetime value: '{ts '2013-11-21 06:33:45'}'
for column 'date' at row 1
我正在使用此语法在数据库中插入:
MyEntity.setCreationDate(Now())
我在我的对象中设置了这个:
property name="creationDate" sqltype="datetime";
答案 0 :(得分:2)
尝试更改您的财产:
property name="creationDate" sqltype="datetime";
到这个
property name="creationDate" ormtype="timestamp";