I'm trying to insert a .JPG
into a SQL Server database using this query:
INSERT INTO Model (Id)
SELECT 1
FROM Openrowset( Bulk 'C:\Desktop\boat.jpg', Single_Blob) as ProductPicture
I'm getting this error:
Operating system error code 3(The system cannot find the path specified.).
I have checked the file path and it seems to be correct.