How to insert images in blob in mysql table using only sql syntax (without PHP)?

只谈情不闲聊 提交于 2019-12-04 11:12:09

I think that command is a MSSQL syntax. Try this command:

INSERT INTO `abc`
(`img`)
VALUES
(LOAD_FILE('C:/Users/adity/Desktop/New folder/a.png'))

This command stores image as a BLOB

Through Mysql workbench, its very easy to load images into database using the following steps.

  1. Right click on the value of the (blob)column in the table and select "Load value from file".
  2. Then we can provide the image path in the system.
  3. Then it will converted into byte array and stored it automatically.
  4. finally save the changes of the table.

Below works for me,

However, I was able to get it done by moving the image(fileName.jpg) file first in to below folder(in my case) C:\ProgramData\MySQL\MySQL Server 5.7\Uploads and then I executed below command and it works for me,

INSERT INTO `abc`
(`img`)
VALUES
(LOAD_FILE('C:/ProgramData/MySQL/MySQL Server 5.7/Uploads/an.jpg')) WHERE id=1;

Hope this helps.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!