Reputation: 139
I'm using Mybatis query database
mysql table structure
parent_id default is ''
insert value is
Mybatis get value seem error? , parent_id
should be ""
instead null value?
Upvotes: 0
Views: 154
Reputation: 409
if your value in DB is empty string and in your Java object is int/Integer, MyBatis cannot cast the column. To solve this, you can either:
IF(parent_id = '', null, parent_id) as parent_id
Upvotes: 1