Hi all,
I have an image file that is in a directory (Linux OS).
/home/www/test/loadimage/mypic.jpg
I have an Image table
CREATE TABLE Image (
Id int(11) DEFAULT '0' NOT NULL,
Image mediumblob NOT NULL,
PRIMARY KEY (Id)
);
How do I load the image into the database?