hir,
i have given below some details for my Table which i want .
CREATE TABLE Items
(
ID int,
CatagorieId int,
Name nvarchar(160) ,
Price decimal(18,2),
ItemPictureUrl nvarchar(1024),
InternalImage varbinary(MAX)
)
How to add the image and varbinary values here .please anyone know this Please send me that Query for that I need to add one row my Table please help me
Ravi PatelPosted May 3, 2016, 8:47 AM
Munesh SharmaPosted May 3, 2016, 1:20 PM
mari muthuPosted May 3, 2016, 8:29 AM
Bhuvanesh MohankumarPosted May 3, 2016, 8:27 AM
Hi Muthu,
I would suggest you to convert the image to Byte Array and store in database and when you get the data, then convert to image object and display it in application.