现在的位置: 首页 > 综合 > 正文

MYSQL:Cannot convert value ’0000-00-00 00:00:00′ from column 10 to TIMESTAMP的解决办法

2013年10月27日 ⁄ 综合 ⁄ 共 676字 ⁄ 字号 评论关闭

今天从MYSQL数据库抓取时,发生了Cannot convert value '0000-00-00 00:00:00' from column 10 to TIMESTAMP异常

 

google了一下,大概意思是MySQL中的Datetime值无法再JAVA中可靠的被表示,按照JDBC和SQL的标准默认情况下产生异常。

 

 

JDBC允许用下列的值对zeroDateTimeBehavior 属性来设置这些处理方式,

exception (the default), which throws an SQLException with an SQLState of S1009. 
设置为exception 异常(缺省)用一个SQLState的s1009错误号来抛出一个异常
convertToNull, which returns NULL instead of the date. 
设置为convertToNull,用NULL值来代替这个日期类型
round, which rounds the date to the nearest closest value which is 0001-01-01. 
设置为round,则围绕这个日期最接近的值(0001-01-01)来代替

你可以修改你的jdbc连接

 

jdbc:mysql://localhost:3306/NovelSiteDB?user=root&password=zjwilove4&zeroDateTimeBehavior=round

 

运行成功!

 

 

 

转自:http://blog.csdn.net/pjchen/archive/2008/04/19/2308245.aspx

 

抱歉!评论已关闭.