Images in MySQL

后端 未结 5 485
醉梦人生
醉梦人生 2020-12-01 21:54

Is there a Image related data type in MySQL that can be used for storing images for each record. Appreciate your help.

Cheers! Anil

5条回答
  •  爱一瞬间的悲伤
    2020-12-01 22:22

    Performance-wise it's probably better to store the file as a file on the drive and only write the filename or filepath and maybe the mime type into the database. But as the others say, BLOB is what you seek.

提交回复
热议问题