When writing blob to DB it is truncated at 65535 . Why is the length of the blob limited and is there a fix.
thanks Jason email:: jstanley@isr.us
Logged In: NO
that depends on the BLOB itself?! use medium- or largeBLOB instead
Logged In: YES user_id=523261
You are likely using a BLOB type column which is limited to 64k. To store more, you will need to use a MEDIUMBLOB or LONGBLOB column.
Log in to post a comment.
Logged In: NO
that depends on the BLOB itself?! use medium- or largeBLOB
instead
Logged In: YES
user_id=523261
You are likely using a BLOB type column which is limited to
64k. To store more, you will need to use a MEDIUMBLOB or
LONGBLOB column.