Hi all,

I have battling and testing image upload for a few weeks amoungst other things, I understand the process and implement the upload via xlsx sheet. But my boss is adiment that we store them in the db. I know that when uploaded either way it creates multilple images in the content\image directory but for some reason its stopped at 0000.560_'jpg

The query I use is

INSERT INTO [Nop].[dbo].[Picture]
           ([PictureBinary]
           ,[MimeType]
           ,[SeoFilename]
           ,[IsNew])

VALUES(
CONVERT(VARBINARY(Max),'C:\Users\Administrator\Desktop\Nop\Presentation\Nop.Web\Content\Images\Thumbs\HealthBeauty\Babycare\Accessories\70x70\BabyBlanketAniamls.jpg')
,'image/jpeg'
,'alpen.jpg'
,'TRUE'),

It updates in the DB but not in the image content file. Any help would be grand.

Just to add I have switched between both filesystem and store db functions.

Kind regards

Richard