I am trying to UPDATE a mysql TEXT data-type column with a string contains near 6,000 characters inside (6 kb data-size). Then the column is not updated with that data.
Then when i test this column by updating with test data around 100 characters, it works.
So, is there any limit on mysql query processing?
If so, how can i adjust it?
I'm using XAMPP on MacOSX.
textdata type can have up to 65,535 characters. There is probably another problem with your data. Any special characters you are inserting?mysql_escape_string. Thanks again :)