Hi,
we have image column in our database and when we try to retreive image, it takes very long time. Is there any way to improve performance?
Any solutions apart from the below
1. Instead of saving data in DB, store it in file system.
2. using varbinary column instead of image column.
Loading

Santhosh Kumar JayaramanPosted Jul 7, 2012, 5:51 AM
And i have fixed this by using sql server paging to retrieve only few records to fill in datatable.
nuthan raghavPosted Jul 6, 2012, 9:35 AM
Just let me know clearly what you are asking ...........
I think it is not possible that without storing the image how can we retrieve that image from database...........
Regards,
Raghav.
Santhosh Kumar JayaramanPosted Jul 6, 2012, 8:45 AM
nuthan raghavPosted Jul 6, 2012, 5:30 AM
Instead of storing the whole image in the database you can store the file path of that image in database and the image can be stored in the file ..........
I think below code will be useful for u..