解决MySQL 在 Java 检索遇到timestamp空值时报异常的问题

使用JDBC检索MySQL数据库,如果遇到timestamp字段的值为空,那么会立即报出异常:

### Error querying database.  Cause: java.sql.SQLException: Value '0000-00-00 00:00:00' can not be represented as java.sql.Timestamp

解决这个问题需要修改链接数据库JDBC的连接串,加上&zeroDateTimeBehavior=convertToNull

例如:

url=jdbc:mysql://192.168.129.136:3308/rhea?characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull

刷新项目,问题就解决了,返回的是null

上一篇:beautiful number 数位DP codeforces 55D


下一篇:HDU 5179 beautiful number 数位dp