MySQL - Uploading Image To BLOB Max Upload Size?

前端 未结 1 1999
时光说笑
时光说笑 2020-12-17 17:25

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

相关标签:
1条回答
  • 2020-12-17 18:09

    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)

    0 讨论(0)
提交回复
热议问题