I\'m using file uploading for images into a BLOB in a MySQL database, for some reason when I upload some pictures I noticed they weren\'t completely rendered, I then tried
It depends on the type of your column.
From MySQL documentation:, section Storage Requirements for String Types:
TINYBLOB
L+1 bytes, where L < 28 (256 bytes)
BLOB
L+2 bytes, where L < 216 (65 kilobytes)
MEDIUMBLOB
L+3 bytes, where L < 224 (16 megabytes)
LONGBLOB
L+4 bytes, where L < 232 (4 gigabytes)