mysql 的blob类型存储图片的设置备注 1)BLOB类型的字段用于存储二进制数据 MySQL中,BLOB是个类型系列,包括:TinyBlob、Blob、MediumBlob、LongBlob,这几个类型之间的唯一区别是在存储文件的最大大小上不同。 TinyBlob 最大 255 Blob 最大 65K MediumBlob
mysql 的blob类型存储图片的设置备注
1)BLOB类型的字段用于存储二进制数据
MySQL中,BLOB是个类型系列,包括:TinyBlob、Blob、MediumBlob、LongBlob,这几个类型之间的唯一区别是在存储文件的最大大小上不同。
TinyBlob 最大 255
Blob 最大 65K
MediumBlob 最大 16M
LongBlob 最大 4G
2)MySQL max_allowed_packet设置
show VARIABLES like '%max_allowed_packet%';
set global max_allowed_packet = 2*1024*1024*10;
设置完成后要把命令行退出重新登录查看,看来系统变量的值在登录后会缓存。参考http://www.kuqin.com/database/20120622/320977.html
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn