Click here to Skip to main content
15,892,480 members
Articles / Web Development / ASP.NET

retrive images from sql

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
28 Dec 2012CPOL 0  
CREATE TABLE [dbo].[ImageData] ( [ImageID] [int] IDENTITY(1,1) NOT NULL, [ImageData] [image] NULL, CONSTRAINT [PK_ImageData] PRIMARY KEY CLUSTERED ( [ImageID] ASC ) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON,...

Alternatives

Members may post updates or alternatives to this current article in order to show different approaches or add new features.

Please Sign up or sign in to vote.
28 Dec 2012__TR__
Try Google[^]Here are a few links from googlehttp://chiragrdarji.wordpress.com/2007/03/05/storing-and-retrieving-image-in-sql-server/[^]Storing and Retrieving Images from SQL Server Using Strored Procedures and...
Please Sign up or sign in to vote.
28 Dec 2012Thomas Daniels
Hi,Have a look here:http://www.dotnetcurry.com/ShowArticle.aspx?ID=129[^]
Please Sign up or sign in to vote.
29 Dec 2012Wendelius
And to add one more link, if you want to use FileStream in SQL Server, here's an example: How to store and fetch binary data into a file stream column[^]
Please Sign up or sign in to vote.
25 Sep 2013Eduard Keilholz
This is exactly what you want :Storing binary data in SQL Server using EF[^]
Please Sign up or sign in to vote.
28 Dec 2012Member 9682127 6 alternatives  
How to store images in sql & How to retrive images from sql?
Please Sign up or sign in to vote.
29 Dec 2012Abhishek Pant
how to insert image in database and how to retrieve image from database[^]and CodeProject search results[^]and let me Google [^] that you.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Team Leader Delphi LLC
Ukraine Ukraine
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions