Maison  >  Article  >  base de données  >  Mysql系列(十四)datetime查询异常

Mysql系列(十四)datetime查询异常

黄舟
黄舟original
2017-01-22 17:06:201688parcourir

Mysql系列(十四)datetime查询异常

  • 异常:Value '0000-00-00 00:00:00' can not be represented as java.sql.Timestamp (2011-05-25 11:38:40)

  • 描述:非空无默认值的Datetime类型字段,查询时程序报以下错误: Value '0000-00-00 00:00:00' can not be represented as java.sql.Timestamp

  • 解决方法:数据库连接串添加zeroDateTimeBehavior参数或者noDatetimeStringSync参数jdbc:mysql://host:port/xxx?...

  • zeroDateTimeBehavior:取值exception、converToNull、round


  • exception---抛出异常:结果java.sql.SQLException: Value '0000-00-00 00:00:00' can not be represented as java.sql.Timestamp。

  • converToNull:返回null值

  • round:返回0001-01-01 00:00:00.0



  • noDatetimeStringSync:设置为true,返回0000-00-00 00:00:00

以上就是Mysql系列(十四)datetime查询异常的内容,更多相关内容请关注PHP中文网(www.php.cn)!

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn