mysql存储图片问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql存储图片问题相关的知识,希望对你有一定的参考价值。
1. 借鉴http://blog.chinaunix.net/uid-7374279-id-4255927.html
字段名为blob,有四种类型 TinyBlob(255B)、Blob(65k)、MediumBlob(16M)、LongBlob(4G)
例子:
create table test (
ID int auto_increment primary key,
photo blob
);
2. 用java读取数据库图片文件,借鉴http://www.cnblogs.com/jway1101/p/5815658.html
http://blog.chinaunix.net/uid-7374279-id-4255927.html
http://www.linuxidc.com/Linux/2012-06/63179.htm
以上是关于mysql存储图片问题的主要内容,如果未能解决你的问题,请参考以下文章