这是我的表,
create table image(
name varchar(5) not null,
icon blob not null
);
以下是我尝试插入图片的方法,
insert into image values('Sent', load_file('F:/verified.gif'));
当我尝试执行插入查询时,它返回null,
Error Code: 1048. Column 'icon' cannot be null
毫无疑问图像的位置。我可以保证。我正在使用 MySql 5.7 问题是这与Mysql 5.1一起工作正常。 我在这里错过了什么?
谢谢。