How to Save an Image in a SQL Server Database?

Most of the web applications have a lot of images used in it. These images are usually stored in a web server folder and they are accessed by giving the relative path to the file with respect to the root folder of the website. .Net being the platform for distributed application now, ASP.Net can be used to store images that are small to be stored in a database like SQL Server 2000 and later versions. For this purpose the SQL Server database provides a data type called "image" which is used to store images in the database.

To access these images stored in the database we will be using the ADO.Net classes. To find out how to insert and retrieve an image in to the SQL Server database, you can create a .aspx page which can have a HTMLInputFile control which is used to select the image file that is to be saved in the database. You can also create a textbox control in which you can add the image name or some comment or an image id for the image saved. Use a button control to upload the image to the database. Namespaces like System.Data.SqlClient, System.Drawing, System.Data, System.IO, and System.Drawing.Imaging are used in this task.

In the OnClick property of the button you can write the following code to upload an image to the database.

// create a byte[] for the image file that is uploaded
int imagelen = Upload.PostedFile.ContentLength;
byte[] picbyte = new byte[imagelen];
Upload.PostedFile.InputStream.Read (picbyte, 0, imagelen);
// Insert the image and image id into the database
SqlConnection conn = new SqlConnection (@"give the connection string
here...");
try
{
conn.Open ();
SqlCommand cmd = new SqlCommand ("insert into ImageTable "
+ "(ImageField, ImageID) values (@pic, @imageid)",
conn);cmd.Parameters.Add ("@pic", picbyte);
cmd.Parameters.Add ("@imageid", lblImageID.Text);
cmd.ExecuteNonQuery ();
}
finally
{
conn.Close ();
}

You can also write the above code in a function and call that function in the OnClick event of the upload button. The code given above performs the following steps in the process of inserting an image into the database.

1. Get the content length of the image that is to be uploaded
2. Create a byte[] to store the image
3. Read the input stream of the posted file
4. Create a connection object
5. Open the connection object
6. Create a command object
7. Add parameters to the command object
8. Execute the sql command using the ExecuteNonQuery method of the command object
9. Close the connection object

To retrieve the image from the SQL Database you can perform the following steps.

1. Create a MemoryStream object. The code can be something like, MemoryStream mstream = new MemoryStream ();

2. Create a Connection object

3. Open the connection to the database

4. Create a command object to execute the command to retrieve the image

5. Use the command object's ExecuteScalar method to retrieve the image

6. Cast the output of the ExecuteScalar method to that of byte[] byte[] image = (byte[]) command.ExecuteScalar ();

7. Write the stream mstream.Write (image, 0, image.Length);

8. Create a bitmap object to hold the stream Bitmap bitmap = new Bitmap (stream);

9. Set the content type to "image/gif" Response.ContentType = "image/gif";

10. Use the Save method of the bitmap object to output the image to the OutputStream. bitmap.Save (Response.OutputStream, ImageFormat.Gif);

11. Close the connection

12. Close the stream mstream.Close();

Using the above steps you can retrieve and display the image from the database to the web page.

You can use these algorithms and take advantage of the "image" data type available in the SQLServer 2000 database to store small images that correspond to a particular record in the table of the database. This method of storing avoids the tedious task of tracking the path of the web folder if the images are stored in a web folder.

Visit A Guide to .NET for a complete introduction to .NET framework. Learn about ASP.NET, VB.NET, C# and other related technologies.

In The News:

table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.sltrib.com/technology/ci_11005420cid=1271385069ei=u4koSbX2HaGO6AOtxfH4CAusg=AFQjCNGEzRyoFgDkmVKq_OBL2ZGOlETungbPersonal Tech/b: Tennesee boasts world#39;s fastest unclassified computer/abrfont size=-1font color=#6f6f6fSalt Lake Tribune,nbsp;United Statesnbsp;-/font nobrNov 17, 2008/nobr/fontbrfont size=-1AP The Department of Energy#39;s Oak Ridge National Laboratory in Oak Ridge, Tenn. released this photograph Nov. 10 showing some of the 284 computer cabinets b.../b/font/div/font/td/tr/table
table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.marketwatch.com/news/story/TVs-Interactive-Future-Arrives-Today/story.aspx%3Fguid%3D%257BD4099CE7-6E72-4407-ACF1-B7AA9180ECD2%257Dcid=1273047993ei=u4koSbX2HaGO6AOtxfH4CAusg=AFQjCNFRavar0vQWT0UfdqAbDXnY7iAa0ATV#39;s Interactive Future Arrives Today, Combining Social Media With b.../b/abrfont size=-1font color=#6f6f6fMarketWatchnbsp;-/font nobrNov 21, 2008/nobr/fontbrfont size=-1An irreverent weekly btech/b/web culture show hosted by btech/b geeks/pop culture gurus Alex Albrecht and Kevin Rose, Diggnation was launched in 2005. b.../b/fontbrfont size=-1a href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://blog.wired.com/gadgets/2008/11/bitgravity-and.htmlcid=1273047993ei=u4koSbX2HaGO6AOtxfH4CAusg=AFQjCNF8J8ifQb73TyGMl-JmDDXBRi9lMQInteractive Multi-Cam Video Feed Almost Steals Kevin Rose#39;s Digg b.../b/a font size=-1 color=#6f6f6fnobrWired News/nobr/font/fontbrfont class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1273047993hl=ennobrall 9 news articles/nobr/a/font/div/font/td/tr/table
table border=0 width= valign=top cellpadding=2 cellspacing=7trtd width=80 align=center valign=topfont style=font-size:85%;font-family:arial,sans-serifa href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.washingtonpost.com/wp-dyn/content/article/2008/11/16/AR2008111601006.htmlcid=1273337414ei=u4koSbX2HaGO6AOtxfH4CAusg=AFQjCNGveT2qP7JDb1JclxW58Zqm0c6PIwimg src=http://news.google.com/news?imgefp=iIbe5rUQKBkJimgurl=media3.washingtonpost.com/wp-dyn/content/photo/2008/11/16/PH2008111601027.jpg width=80 height=54 alt= border=1brfont size=-2Washington Post/font/a/font/tdtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.philly.com/inquirer/sports/20081122_On_College_Football___If_Texas_Tech_slips__dominoes_will_fall.htmlcid=1273337414ei=u4koSbX2HaGO6AOtxfH4CAusg=AFQjCNFDGIj_PNhK6DHfYr7B9jJp1jL_UwOn College Football: If Texas bTech/b slips, dominoes will fall/abrfont size=-1font color=#6f6f6fPhiladelphia Inquirer,nbsp;PAnbsp;-/font nobr14 hours ago/nobr/fontbrfont size=-1By Ray Parrillo The 2008 darling of college football, second-ranked Texas bTech/b, can take one more step toward the BCS championship game tonight when it b.../b/fontbrfont size=-1a href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.washingtonpost.com/wp-dyn/content/article/2008/11/16/AR2008111601006.htmlcid=1273337414ei=u4koSbX2HaGO6AOtxfH4CAusg=AFQjCNGveT2qP7JDb1JclxW58Zqm0c6PIwWarning: #39;Canes ranked for first time in 2 years/a font size=-1 color=#6f6f6fnobrWashington Post/nobr/font/fontbrfont class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1273337414hl=ennobrall 454 news articles/nobr/a/font/div/font/td/tr/table
table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.pcworld.com/businesscenter/article/154343/15_tech_secrets_for_the_serious_road_warrior.htmlcid=1273142097ei=u4koSbX2HaGO6AOtxfH4CAusg=AFQjCNH8OJTPv9kfQhqEK7_U9IPq749Onw15 bTech/b Secrets for the Serious Road Warrior/abrfont size=-1font color=#6f6f6fPC Worldnbsp;-/font nobr16 hours ago/nobr/fontbrfont size=-1In the past, we#39;ve described how to accomplish more with popular online tools like Google Calendar, with text-messaging utilities like Web-based bpersonal/b b.../b/font/div/font/td/tr/table
table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.tampabay.com/SearchForwardServlet.do%3FarticleId%3D912932cid=0ei=u4koSbX2HaGO6AOtxfH4CAusg=AFQjCNEp8L4tkmm2_sh7ILW18VIuYp-2ZQSolutions: How to rip music from a DVD/abrfont size=-1font color=#6f6f6fTampabay.com,nbsp;FLnbsp;-/font nobr19 hours ago/nobr/fontbrfont size=-1Send questions to bpersonaltech/b@sptimes.com or bPersonal Tech/b, PO Box 1121, St. Petersburg, FL 33731. Questions are answered only in this column./font/div/font/td/tr/table
table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.marketwatch.com/news/story/sector-tries-hold-small-gains/story.aspx%3Fguid%3D%257B8C1C5262-0DD5-406E-841A-310B971B467D%257D%26dist%3Dmsr_1cid=1272976684ei=u4koSbX2HaGO6AOtxfH4CAusg=AFQjCNHDfuJYR0elJidIr3ENgcphH1VQQQbTech/b stocks try to hold gains in afternoon trading/abrfont size=-1font color=#6f6f6fMarketWatchnbsp;-/font nobrNov 21, 2008/nobr/fontbrfont size=-1The maker of bpersonal/b computers credited the results in part to its cost-cutting measures, under which Dell has laid off nearly 9000 workers so far this b.../b/font/div/font/td/tr/table
table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.sltrib.com/technology/ci_11005410cid=0ei=u4koSbX2HaGO6AOtxfH4CAusg=AFQjCNH_0kZWW_3feZSfNR7TYziNkMnc7gbPersonal Tech/b: Black Friday is a bright day for gadget lovers/abrfont size=-1font color=#6f6f6fSalt Lake Tribune,nbsp;United Statesnbsp;-/font nobrNov 17, 2008/nobr/fontbrfont size=-1The day after Thanksgiving, also known as quot;Black Friday,quot; is one of the biggest shopping days of the year because that#39;s when stores introduce hot deals for b.../b/font/div/font/td/tr/table
table border=0 width= valign=top cellpadding=2 cellspacing=7trtd width=80 align=center valign=topfont style=font-size:85%;font-family:arial,sans-serifa href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.product-reviews.net/2008/11/19/nvidias-new-gpu-based-tesla-personal-supercomputer/cid=1271902680ei=u4koSbX2HaGO6AOtxfH4CAusg=AFQjCNH9PpXSQe5bu_PBNeJdssca47kwmQimg src=http://news.google.com/news?imgefp=htCC06I2AKsJimgurl=www.product-reviews.net/wp-content/uploads/2008/11/nvidia-tesla-supercomputer.jpg width=80 height=80 alt= border=1brfont size=-2Product Reviews/font/a/font/tdtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.networkworld.com/news/2008/111908-nvidia-to-offer-parallel-tech.html%3Fhpg1%3Dbncid=1271902680ei=u4koSbX2HaGO6AOtxfH4CAusg=AFQjCNFQ6u4pEQdn8URpWeAWuksvXsyQPANvidia to offer parallel btech/b for mobile devices/abrfont size=-1font color=#6f6f6fNetworkWorld.com,nbsp;MAnbsp;-/font nobrNov 19, 2008/nobr/fontbrfont size=-1Nvidia announced Tuesday a GPU-based Tesla bPersonal/b Supercomputer, which it said uses its Tesla GPUs and Cuda to deliver the power of a cluster of computers b.../b/fontbrfont size=-1a href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://computerworld.com/action/article.do%3Fcommand%3DviewArticleBasic%26articleId%3D9120741cid=1271902680ei=u4koSbX2HaGO6AOtxfH4CAusg=AFQjCNH3VJjN264qUQoEYoQ0FMubW-VxZwThanks to gamers, the desktop supercomputer arrives/a font size=-1 color=#6f6f6fnobrComputerworld/nobr/font/fontbrfont size=-1a href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.digitimes.com/news/a20081120PR206.htmlcid=1271902680ei=u4koSbX2HaGO6AOtxfH4CAusg=AFQjCNG5Bf_eOxB9cUoENWknO-1jTKGtFANvidia makes headway with its GPU-based bpersonal/b supercomputers/a font size=-1 color=#6f6f6fnobrDigiTimes/nobr/font/fontbrfont size=-1a href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.hindu.com/2008/11/20/stories/2008112055691500.htmcid=1271902680ei=u4koSbX2HaGO6AOtxfH4CAusg=AFQjCNF8CYblJfP6EqoOvr7cIPVkM17z2wnVIDIA launches Tesla supercomputer/a font size=-1 color=#6f6f6fnobrHindu/nobr/font/fontbrfont size=-1 class=pa href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.reghardware.co.uk/2008/11/19/nvidia_pitches_tesla_personal_supercomputers/cid=1271902680ei=u4koSbX2HaGO6AOtxfH4CAusg=AFQjCNFgGcwrYz5TDfoxhU0FxDUhdwV4uwnobrReg Hardware/nobr/anbsp;- a href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.marketwatch.com/news/story/Tokyo-Tech-Builds-First-Tesla/story.aspx%3Fguid%3D%257B84070E4C-3E40-4072-9B02-C8826303A9C3%257Dcid=1271902680ei=u4koSbX2HaGO6AOtxfH4CAusg=AFQjCNGYtI6r6xYd5cWtj2GFBPJz1hu_VwnobrMarketWatch/nobr/a/fontbr/font class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1271902680hl=ennobrall 216 news articles/nobr/a/font/div/font/td/tr/table
table border=0 width= valign=top cellpadding=2 cellspacing=7trtd width=80 align=center valign=topfont style=font-size:85%;font-family:arial,sans-serifa href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.charlotteobserver.com/sports/story/369828.htmlcid=1271602737ei=u4koSbX2HaGO6AOtxfH4CAusg=AFQjCNF_U2Ysz_PT6M5huUsx1gA6X8uBoAimg src=http://news.google.com/news?imgefp=ic8Ja-31T2AJimgurl=media.charlotteobserver.com/smedia/2008/11/21/22/254-bestnat1122.ART_G5B6UI99.1%2Bsambradford_AA__.JPG.embedded.prod_affiliate.138.jpg width=56 height=80 alt= border=1brfont size=-2CharlotteObserver.com/font/a/font/tdtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.chron.com/disp/story.mpl/sports/college/6124317.htmlcid=1271602737ei=u4koSbX2HaGO6AOtxfH4CAusg=AFQjCNHmuL2ngznVg02O9ahr7URmyXHhuAFormer players recall bTech/b’s outright conference title/abrfont size=-1font color=#6f6f6fHouston Chronicle,nbsp;United Statesnbsp;-/font nobrNov 20, 2008/nobr/fontbrfont size=-1Another thing the 1955 team didn’t have to worry about: the BCS rankings. “Those computers (stink) if you want my bpersonal/b opinion,” Schmidt said./fontbrfont size=-1a href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.crimsonandcreammachine.com/2008/11/21/667160/talkin%25E2%2580%2599-texas-tech-part-iicid=1271602737ei=u4koSbX2HaGO6AOtxfH4CAusg=AFQjCNHBtp8_N_sI2QV6NMOOtjs_abKBTATalkin’ Texas bTech/b Part II/a font size=-1 color=#6f6f6fnobrCrimson and Cream Machine/nobr/font/fontbrfont size=-1a href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.iht.com/articles/ap/2008/11/20/sports/FBC-T25-Texas-Tech-Defense.phpcid=1271602737ei=u4koSbX2HaGO6AOtxfH4CAusg=AFQjCNFUo4SJspFNlgYzDM6bkhn1XtOdnQNo. 2 Texas bTech#39;s/b defense gaining respect/a font size=-1 color=#6f6f6fnobrInternational Herald Tribune/nobr/font/fontbrfont size=-1a href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.redraiders.com/%3Fp%3D3717cid=1271602737ei=u4koSbX2HaGO6AOtxfH4CAusg=AFQjCNErXIaSgp7im6LpWlJfljLRXUlAQgBench provides spark in bTech/b’s first two games/a font size=-1 color=#6f6f6fnobrRedRaiders.com/nobr/font/fontbrfont size=-1 class=pa href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://msn.foxsports.com/cfb/story/8823070/Is-this-the-year-Red-Raiders-win-in-Normancid=1271602737ei=u4koSbX2HaGO6AOtxfH4CAusg=AFQjCNElSH0_sllr0rdvuR3vTsl4VMJtkAnobrFOXSports.com/nobr/anbsp;- a href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://deadspin.com/5095675/college-football-preview-ive-got-a-crush-on-mike-leachcid=1271602737ei=u4koSbX2HaGO6AOtxfH4CAusg=AFQjCNFLxBQtKZMNJGTVinr6UORifVclgAnobrDeadspin/nobr/a/fontbr/font class=p size=-1a class=p href=http://news.google.com/news?sourceid=navclientie=ISO-8859-1rls=GGLG,GGLG:2005-22,GGLG:enncl=1271602737hl=ennobrall 864 news articles/nobr/a/font/div/font/td/tr/table
table border=0 width= valign=top cellpadding=2 cellspacing=7trtd valign=top class=jfont style=font-size:85%;font-family:arial,sans-serifbrdiv style=padding-top:0.8em;img alt= height=1 width=1/divdiv class=lha href=http://www.citywebshopper.net/articles/includes/redirect.php?url=http://www.bizjournals.com/buffalo/stories/2008/11/17/smallb2.htmlcid=1272550978ei=u4koSbX2HaGO6AOtxfH4CAusg=AFQjCNEIhki9r3fhEt4l1KCHJUNUh1VsngbTech/b training with a bpersonal/b touch/abrfont size=-1font color=#6f6f6fBizjournals.com,nbsp;NCnbsp;-/font nobrNov 20, 2008/nobr/fontbrfont size=-1“I work mostly in small groups and am able to give my clients more bpersonal/b attention and answer their questions one-on-one.” This article is for Paid Print b.../b/font/div/font/td/tr/table
personal tech - Google News

Put Order and Information into File Names

Unless you place your faith in internal search engine software... Read More

Ergonomics and Healthy Computing - Positioning Your Body For Maximum Comfort At Your Computer

Do you remember the old saw about how computers would... Read More

What Has A Portable MP3 Player Have To Do With Your Business

Plenty! When we made the decision to be our own... Read More

Upgrading Your PC for Non-experts

IntroOne of the big advantages of PCs over earlier types... Read More

How To Become A True CCNA

I've worked my way from the CCNA to the CCIE,... Read More

How To Remove One Operating System from a Dual Boot Windows XP Computer

In Windows Xp, you can install two operating systems on... Read More

Be Your Own IT Department

If you use a computer, you need to know more... Read More

A Tale of Two Regeds

Tech support tells me to type 'regedt32' as opposed to... Read More

The Help Desk

When you think of a help desk, what do you... Read More

How To Have Two (Multiple) Copies Of Windows

Having two operating systems is not as difficult as many... Read More

Desktop Security Software Risks - Part 2

This is the third in a series of articles highlighting... Read More

Basic Problem in a PC

I have a p3 500MHz PC with 128MB RAM, 10.2... Read More

Cisco Certification: The Most Important Cisco Study Youll Ever Do

All of us are familiar with the pyramids of Egypt.... Read More

Web Standards

HTTP ProtocolThe web is run on port 80. You are... Read More

Dynamite Comes in Small Packages - Tiny Personal Audio MP3 Players Pack Powerful Music Enjoyment

MP3 players are Hot! Playing music has come a long... Read More

Enhanced Web Browsing With Toolbars

As the Web grows more crowded and just plain "noisy"... Read More

Help, I Need a New HDTV! (Part 5 of 5)

Feeling overwhelmed in selecting a new TV? With all the... Read More

How to Switch to Firefox and Why You should

First things first, what is Firefox? Well, it's a browser.... Read More

System File Checker - A Maintenance Utility

System File Checker is a great utility that is typically... Read More

Cisco Certification: What To Expect On Exam Day

Cisco Certification: Taking Your First Certification ExamYou've studied hard; you've... Read More

10 Tips to Stay Safe and Secure Online

The Internet can be a dangerous place.While you're enjoying the... Read More

How To Recognize The Telltale Signs Of Spyware

Spyware is the software that collects information about your online... Read More

Cisco CCNA Candidate FAQ

CCNA FAQQ. What exams do I have to take to... Read More

How I Started Working With 3D Modeling Programs

So I'll start from the very beginning.One day I was... Read More

Cisco CCNA Certification: Five Things To Do DURING The Exam

There are plenty of articles out there about how to... Read More