MySQL
-
-
Hi All I am using MySQL.Simply i create a table through this command.
create table Pic(picture blob);
insert pic(picture) values('C:\sample.bmp');
one row affected.
select * from pic;
Picture
BLOBThere is no picture show.How can i show picture. Plz help me
Have you read the doco on inserting pictures into MySQL? I would think that you just inserted the string 'C:\sample.bmp' into a binary field.
Never underestimate the power of human stupidity RAH
-
Have you read the doco on inserting pictures into MySQL? I would think that you just inserted the string 'C:\sample.bmp' into a binary field.
Never underestimate the power of human stupidity RAH
-
Have you attempted to do some research, these results looked promising[^] I have no experience with MySQL so this is the best I can do.