Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
2.6.2
-
None
Description
BasePrepareStatement.setObject() doesn't handle the Character data type, resulting in it falling back to sending the serialized version of the Character object.
This is of course compliant with JDBC, which does not define a mapping for the Character data type; however, since this was present in a previous version of the driver, upgrading broke our application and we had to deploy a workaround.
Attachments
Issue Links
- duplicates
-
CONJ-185 MySQLPreparedStatement.setObject cannot handle java.lang.Character type
-
- Closed
-
This is slightly different from
CONJ-185where targetSqlType was set to java.sql.Types.CHAR value, but with String object.Here is handling char / java.lang.Character Object. I don't know if this was supported of not, I've not found any code change that could have refer to this part. In all case, there is no reason not to support char / java.lang.Character parameters.