使用URL MYSQL

时间:2016-03-01 15:38:52

标签: mysql picturegallery

我想知道如果有任何方法可以将图像加载到像

这样的表中
create table x(id int auto_increment unique, `pic blob` (I may not be right) and here at load to have an URL or smth like that );*

1 个答案:

答案 0 :(得分:0)

你可以试试这个:

INSERT INTO x(id,pic) VALUES(1,LOAD_FILE('C:/Desktop/images/test.jpg'));

然后使用PHP(例如),您可以阅读和打印

/*
Read from database
...
... */
echo '<img src="data:image/jpeg;base64,'.base64_encode( $result['pic'] ).'"/>';

供参考LOAD_FILE