create table img(id integer primary key, image blob);
insert into img
value(1, load_file('C:\Users\User\Desktop\Image/imge.png'));
select * from img;
它只显示了id列。图像列为空。
答案 0 :(得分:1)
你的路径不正确 - 最后的斜杠也应该是反斜杠
C:\用户\用户\桌面\图片\ imge.png
还要检查: