Hi, wonder if anyone can help.
I want to insert a jpeg as blob data into a table column holding blob values. So far I just can't seem to come up with the right script to run in mysql workbench. The jpeg is stored on the same machine where mysql is running.
I have a similar table setup in SQL Server2005 and have managed to do the above with the following script:
INSERT INTO BLOBTable (BLOBName, BLOBData)
SELECT 'door', BulkColumn FROM OPENROWSET(
Bulk 'C:\Users\Laurentius\Documents\pegs\door.jpg' SINGLE_BLOB) AS BLOB
Anyone know how to do this in mysql?
Thanks for any help, Tony.