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?
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?
Assuming that those are hexadecimal escape codes, the text \xAC\xED\x00\x05sr...
is not a valid UTF-8 string.