Click here to Skip to main content
Click here to Skip to main content

Save An Image Into SQL Server 2000 Database

By , 24 Feb 2005
 

Abstract

.NET is the new distributed computing platform developed by Microsoft and ASP.NET is its programming model for web development. The intent of this article is to get a good experience in developing data driven ASP.NET Web Forms applications by means of a real world application. This application will teach you how to save an image file into a database and how to retrieve it from the database. It uses ADO.NET as the data access mechanism, C# as the development language, and SQL Server 2000 as the backend database.

Overview of the Solution

Normally, images are saved in the web server folder, not in the database; this is for larger file size category. In some cases like, in bank, for example, they scan the user signatures as image files and save that file into the database.

  • Database schema

    MS SQL Server 2000 is used as the backend database for this small demonstration. And I used a special data type in SQL Server called image. The image data type is used to save the image into the database.

  • Controls used in this application
    • System.Web.UI.HtmlControls.HtmlInputFile
    • System.Web.UI.WebControls.TextBox
    • System.Web.UI.WebControls.Button
  • Namespaces used in this application:
    using System.Data.SqlClient;
    using System.Drawing;
    using System.Data;
    using System.IO;
    using System.Drawing.Imaging;

Solution with Code

Use the HtmlInputFile class, which you can declare an instance of with an <input type="file" runat="server"/> tag. The following example is a complete ASPX file that lets a user upload an image file and a comment describing the image. The OnUpload method writes the image and the comment to a table named Pictures in a SQL Server database named iSense.

// Source Code for Save the image file into the database

public void OnUpload(Object sender, EventArgs e)
{
    // Create a byte[] from the input file
    int len = Upload.PostedFile.ContentLength;
    byte[] pic = new byte[len];
    Upload.PostedFile.InputStream.Read (pic, 0, len);
    // Insert the image and comment into the database
    SqlConnection connection = new 
      SqlConnection (@"server=INDIA\INDIA;database=iSense;uid=sa;pwd=india");
    try
    {
        connection.Open ();
        SqlCommand cmd = new SqlCommand ("insert into Image " 
          + "(Picture, Comment) values (@pic, @text)", connection);
        cmd.Parameters.Add ("@pic", pic);
        cmd.Parameters.Add ("@text", Comment.Text);
        cmd.ExecuteNonQuery ();
    }
    finally 
    {
        connection.Close ();
    }
}

The above created function is called using the onClick property of a button.

How do I read an image from a database using ADO.NET and display it in a Web page?

Here, I used the web page to display the image and not any other control. The following is the code for displaying the image from the database.

private void Page_Load(object sender, System.EventArgs e)
{
    // Put user code to initialize the page here
    MemoryStream stream = new MemoryStream ();
    SqlConnection connection = new 
      SqlConnection (@"server=INDIA\INDIA;database=iSense;uid=sa;pwd=india");
    try
    {
        connection.Open ();
        SqlCommand command = new 
          SqlCommand ("select Picture from Image", connection);
        byte[] image = (byte[]) command.ExecuteScalar ();   
        stream.Write (image, 0, image.Length);
        Bitmap bitmap = new Bitmap (stream);
        Response.ContentType = "image/gif";
        bitmap.Save (Response.OutputStream, ImageFormat.Gif);
    } 
    finally
    {
        connection.Close ();
        stream.Close ();
    }
}

The GDI+ functions offer a rich set of features for managing and modifying image data. This article's examples offer only a glimpse into the functionality you can leverage using the classes available in the System.Drawing and System.Drawing.Imaging namespaces. For example, you can develop applications for storing and managing image files on the Web, or you can provide a simple, easily deployed application that enables users to manipulate images.

How to run this application? First, create a virtual directory and put the project files into the virtual directory. And then change the server name, database name, and table name in the following statement.

SqlConnection connection = new SqlConnection
        ("server=localhost;database=mypictures;uid=sa;pwd=");

and publish the project to get the best results.

License

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

About the Author

vivekthangaswamy
Architect
India India
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 1membermostafa3586 Feb '13 - 12:23 
GeneralthnksmemberMember 87883404 Apr '12 - 22:18 
QuestionTHANK YOU.memberAlejandro Alas26 Mar '12 - 6:59 
QuestionNICE- ONE MORE DOUBTmemberRamkumar0619 Feb '12 - 0:47 
GeneralMy vote of 3membersugumar srinuvas20 Oct '11 - 3:26 
QuestionThanxmemberrangachisi20 Oct '11 - 2:33 
QuestionSave and Open a Image into SQL 2000 using Visual Basic 6memberMian Zahid6 Oct '11 - 19:17 
Questionhow to read imagemembersaravanakumar.nr19 Jul '11 - 20:42 
GeneralSave An Image Into SQL Server 2000 Databasememberawadhendra tiwari23 May '11 - 6:53 
GeneralMy vote of 4memberpatilthegodfather23 Dec '10 - 23:40 
GeneralMy vote of 1memberafedor20 Feb '10 - 3:57 
GeneralThx, it's help alot in my assignmentmemberragk885 Aug '09 - 6:46 
GeneralI want to retrieve image from sql server 2000 using c#.net 2003memberwingaurav3 May '09 - 4:16 
GeneralErorrmemberyoyonimol23 Apr '09 - 16:57 
GeneralIT WORKS!!!! Thanks Vivek!memberlukaz101023 Apr '09 - 8:58 
GeneralThank You Manmemberminatharwat18 Mar '09 - 0:39 
GeneralThank Youmemberminatharwat18 Mar '09 - 0:38 
GeneralCode to display image in gridviewmembertab_nil13 Mar '09 - 1:40 
GeneralThank you!!memberAmol_B16 Dec '08 - 3:42 
QuestionHow to display image???membersmetaljuan29 Oct '08 - 8:01 
GeneralStore and Retrieve image without using temp file...memberanandmmsoft12 Oct '08 - 20:41 
GeneralNice Articlememberirshadmohideen30 Aug '08 - 3:58 
Generalthank youmember7sepehr22 Jun '08 - 21:07 
Generalsql image applicationmemberbapu28898 Jun '08 - 6:53 
Generalcreate image in sql HLPPP!!!@!@!memberyaozhong8 May '08 - 17:36 
QuestionHow to resize (zoom in) Image before save to sqlmemberDoan Quynh21 Apr '08 - 0:22 
GeneralGood workmemberAlex Archambault28 Nov '07 - 10:18 
Generalvery goood topicmembermkazim8526 Oct '07 - 1:42 
GeneralGood article [modified]memberBino B4 Oct '07 - 22:06 
GeneralStore Image In SQL 2000memberAbhijit Salokhe16 Sep '07 - 23:03 
GeneralRe: Store Image In SQL 2000membervivekthangaswamy18 Sep '07 - 2:41 
Questioninvalid paramer(stream) exceptionmembervinuparli23 May '07 - 20:18 
AnswerRe: invalid paramer(stream) exceptionmembervivekthangaswamy4 Jun '07 - 21:28 
AnswerRe: invalid paramer(stream) exceptionmemberThe Knowledge5 Oct '07 - 1:52 
GeneralRe: invalid paramer(stream) exceptionmemberMd.Alauddin17 Feb '11 - 4:52 
QuestionSave image through DataBase through InagePathmembergs_dhaliwal27 Feb '07 - 0:51 
AnswerRe: Save image through DataBase through InagePathmembervivekthangaswamy27 Feb '07 - 2:02 
Generalretriving image from sqlserver2000 using c#memberMember #303726316 Jan '07 - 17:43 
QuestionSave and retreive files (as word document, excel files) in the databasemembersagi399920 Dec '06 - 19:55 
AnswerRe: Save and retreive files (as word document, excel files) in the databasememberPatrish5 Jan '07 - 9:23 
AnswerRe: Save and retreive files (as word document, excel files) in the databasememberkrishnakumark6 Feb '07 - 23:40 
Questiondo program in c# + asp.net+sqlmemberal_wrood16 Oct '06 - 23:10 
AnswerRe: do program in c# + asp.net+sqlmembervivekthangaswamy20 Oct '06 - 6:38 
GeneralVery useful onememberAravind.Kumar19 Sep '06 - 2:36 
GeneralRe: Very useful onemembervivekthangaswamy20 Oct '06 - 6:39 
Generalinvalid parameter exceptionmemberVishalSharmaDev17 Aug '06 - 7:19 
GeneralRe: invalid parameter exceptionmemberirspaul13 Jan '07 - 3:48 
Generali worked out this coding. than how to retrieve multiple images from sql-servermemberK.Gajalakshmi9 Aug '06 - 7:57 
AnswerRe: i worked out this coding. than how to retrieve multiple images from sql-servermemberQuartz...17 Aug '06 - 7:41 
Generalinvalid parameter exceptionmemberrrd_angelofD23 Jul '06 - 20:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 25 Feb 2005
Article Copyright 2005 by vivekthangaswamy
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid