Value '0000-00-00' can not be represented as java.sql.Date


Value '0000-00-00' can not be represented as java.sql.Date

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

這樣有可能會報新的Exception:

The reference to entity "characterEncoding" must end with the ';' delimiter   

其原因可能是在Properties文件或者xml文件中忘記進行特殊符號的轉譯了,

jdbc:mysql://192.168.1.155:3306/diandi?useUnicode=true&characterEncoding=UTF-8 & zeroDateTimeBehavior=convertToNull

需要改為:

jdbc:mysql://192.168.1.155:3306/diandi?useUnicode=true&characterEncoding=UTF-8 & zeroDateTimeBehavior=convertToNull 

有以下幾類字符要進行轉義替換:

<

<

小於號

&gt;

>

大於號

&amp;

&

&apos;

'

單引號

&quot;

"

雙引號


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM