Value '0000-00-00' can not be represented as java.sql.Date解決辦法
阿新 • • 發佈:2018-09-14
解決 oca 返回 字段 color url mysq 使用 Coding
java.sql.SQLException: Value ‘0000-00-00 00:00:00‘ can not be represented as java.sql.Timestamp
問題描述, 在java應用程序中,數據表中有記錄的time字段(屬性為timestamp)其值為:“0000-00-00 00:00:00”
程序使用select 語句從中取數據時出現以下異常:
java.sql.SQLException:Value ‘0000-00-00‘ can not be represented as java.sql.Date
這是因為 “0000-00-00 00:00:00”在mysql中是作為一個特殊值存在的,但是在Java中, java.sql.Date 會被視為 不合法的值,被JVM認為格式不正確。
解決辦法:
在jdbc的url加上 zeroDateTimeBehavior參數:
datasource.url=jdbc:mysql://localhost:3306/pe?useUnicode=true&characterEncoding=gbk&zeroDateTimeBehavior=convertToNull
對於值為0000-00-00 00:00:00(默認值)的紀錄,根據不同的配置,會返回不同的結果:
不配置:默認返回異常
zeroDateTimeBehavior=round 0001-01-01 00:00:00.0
zeroDateTimeBehavior=convertToNull null
Value '0000-00-00' can not be represented as java.sql.Date解決辦法