java.sql.SQLException: Incorrect string value: '\xAC\xED\x00\x05sr...' for column 'xxxx'
The column is a longtext in MYSQL with utf8 charset and utf8_general_ci collation.
What is wrong?
It's a bit late, but you might want to know that \xAC\xED\x00\x05sr... is a magic number for Java serialization. Apparently your parameter is being serialized instead of being pasted as a string.
Assuming that those are hexadecimal escape codes, the text \xAC\xED\x00\x05sr...
is not a valid UTF-8 string.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With