Question : insert image using openrowset

Hello,

I need to insert an image into my database for a certain row.  If I use:

INSERT INTO mytable(mycol) Where myid = '12345'
SELECT * FROM
OPENROWSET(BULK N'C:\image.jpg', SINGLE_BLOB) AS i

It won't work.  Probably should be Update table set.... , etc.

Anyone know the correct syntax??

Answer : insert image using openrowset

http://eknowledger.spaces.live.com/blog/cns!F475D4DE444DB1AB!832.entry has helped me in the past


INSERT StockGifs (StockGifID, Gif)

SELECT 1, BulkColumn

FROM OPENROWSET (BULK 'C:\Ahmed1.gif',SINGLE_BLOB) AS x
Random Solutions  
 
programming4us programming4us