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

Store and retrieve objects as BLOBs in SQL Server 2000 and 2005 using ASP.NET 2.0

By , 5 Aug 2008
 

Introduction

There are scenarios where our applications have to store documents, say Document Management Systems. The two main options that I see for handling images/files in web or Windows applications are storing images as a BLOB in the database, or storing the URL/UNC of the file in the database and actually storing the image file on a file share.

Background

Storing BLOB objects in SQL Server is really cumbersome when it comes to retrieval. Hence, the most commonly accepted way of managing images for a website is not to store the images in the database, but only to store the URL in the database, and to store the images on a file share that has been made a virtual folder of your web server.

Writing BLOB values to database

You can write a binary large object (BLOB) to a database as either binary or character data, depending on the type of the field in your data source. To write a BLOB value to your database, issue the appropriate INSERT or UPDATE statement and pass the BLOB value as an input parameter. If your BLOB is stored as text, such as a SQL Server text field, you can pass the BLOB as a string parameter. If the BLOB is stored in binary format, such as a SQL Server image field, you can pass an array of type byte as a binary parameter.

The first thing to be aware of here is, blob data is not stored inline, that is not on the same page as the rest of the data (unless specifically instructed: see sp_tableoption). Secondly, all "blob" data can be forced into a separate filegroup, which you can position on a different IO subsystem. The maximum size for a blob is 2GB, multiple blobs can share the 8K pages, so the minimum "blob" size will be your smallest file.

While designing tables to store BLOBs, always define a column to store the file type or content type, say .doc, .xls, etc. This is very much required while retrieving the files back from the database to identify the content type.

Table structure

Table to store BLOBs:

if exists (select * from dbo.sysobjects 
   where id = object_id(N'[dbo].[Docs]') and 
         OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[Docs]
GO
CREATE TABLE [dbo].[Docs] (
 [docid] [int] IDENTITY (1, 1) NOT NULL ,
 [docuid] [uniqueidentifier] NULL ,
 [docname] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,
 [document] [image] NOT NULL ,
 [doctype] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL 
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
ALTER TABLE [dbo].[Docs] WITH NOCHECK ADD 
 CONSTRAINT [PK_Docs] PRIMARY KEY  CLUSTERED 
 (
  [docid]
 )  ON [PRIMARY] 
GO

Stored Procedures

Procedures to dump/retrieve BLOBs:

CREATE proc sp_adddoc(@docname nvarchar(50), @document image, @doctype nvarchar(50))
as
begin
 insert into Docs(docuid, docname, document, doctype)
  valueS(newid(), @docname, @document, @doctype)
end
GO

CREATE proc sp_getdoc(@docuid uniqueidentifier)
as
begin
 select document, docname, doctype from Docs where docuid = @docuid
end
GO

Using the code for dumping document into database from ASPX

Let us try a scenario, say, we have a document to be uploaded to the database with a Primary Key (PK).

Here we go! Drag and place a "FileUpload" and a "Button" control into the web page (.aspx) and paste the code below into the "Button_Click" event of the "Upload" button. Don't forget to mention the connection string in your "Web.config" file before trying this code snippet.

protected void btnUpload_Click(object sender, EventArgs e)
{
    //Validation to make sure that the file 
    //upload control has a valid file
    if (!FileUpload1.HasFile) return;

    //Get the binary array directly from the control
    byte[] binary = new byte[FileUpload1.PostedFile.ContentLength];
    binary = FileUpload1.FileBytes;
    //SQL connection and paramters to dump 
    //the document via stored procedure
    SqlParameter param = null; 
    SqlConnection conn = new SqlConnection(
      ConfigurationManager.ConnectionStrings["menu"].ToString());

    SqlCommand cmd = new SqlCommand("sp_adddoc", conn);
    cmd.CommandType = CommandType.StoredProcedure;
    //Parameters and values 
    param = new SqlParameter("@docname", SqlDbType.NVarChar, 50, 
            ParameterDirection.Input, false, 0, 0, "", 
            DataRowVersion.Default, FileUpload1.FileName); 
    cmd.Parameters.Add(param);
    param = new SqlParameter("@document", SqlDbType.Image);
    param.Direction = ParameterDirection.Input;
    param.Value = binary;
    cmd.Parameters.Add(param);
    param = new SqlParameter("doctype", SqlDbType.NVarChar, 50, 
                ParameterDirection.Input, false, 0, 0, "", 
                DataRowVersion.Default, FileUpload1.PostedFile.ContentType);
    cmd.Parameters.Add(param);
    //Connection open and execute
    conn.Open();
    cmd.ExecuteNonQuery();
}

Using the code for file retrieval from ASPX

Now, it is time to retrieve the BLOB and render it to the web page. To retrieve the document, we must provide the PK of the item. Use the code snippet below to get the BLOB back from the database. Here I am using "binary streaming" for better IO performance.

private void WriteDocumentWithStreaming()
{
    // Request.QueryString["docid"].ToString(); 
    string docuid = "864d9871-b6f2-41ec-8a4d-615bd0f03763";
    //Connection and Parameters
    SqlParameter param = null;
    SqlConnection conn = new SqlConnection(
       ConfigurationManager.ConnectionStrings["menu"].ToString());
    SqlCommand cmd = new SqlCommand("sp_getdoc", conn);
    cmd.CommandType = CommandType.StoredProcedure;
    param = new SqlParameter("@docuid", SqlDbType.NVarChar, 100);
    param.Direction = ParameterDirection.Input;
    param.Value = docuid;
    cmd.Parameters.Add(param);
    //Open connection and fetch the data with reader
    conn.Open();
    SqlDataReader reader = 
      cmd.ExecuteReader(CommandBehavior.CloseConnection);
    if (reader.HasRows)
    {
        reader.Read();
        //
        string doctype = reader["doctype"].ToString();
        string docname = reader["docname"].ToString();
        //
        Response.Buffer = false; 
        Response.ClearHeaders();
        Response.ContentType = doctype;
        Response.AddHeader("Content-Disposition", 
                 "attachment; filename=" + docname); 
        //
        //Code for streaming the object while writing
        const int ChunkSize = 1024;
        byte[] buffer = new byte[ChunkSize];
        byte[] binary = (reader["document"]) as byte[];
        MemoryStream ms = new MemoryStream(binary);
        int SizeToWrite = ChunkSize;

        for (int i = 0; i < binary.GetUpperBound(0)-1; i=i+ChunkSize)
        {
            if (!Response.IsClientConnected) return;
            if (i + ChunkSize >= binary.Length)
                SizeToWrite = binary.Length - i;
            byte[] chunk = new byte[SizeToWrite];
            ms.Read(chunk, 0, SizeToWrite);
            Response.BinaryWrite(chunk);
            Response.Flush();
        }
        Response.Close(); 
    } 
}

How to handle BLOBs in WinForms?

See my writings here.

If I get enough queries on this one, I will start writing more articles. My blog.

License

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

About the Author

Ziyad Mohammad
Architect
United States United States
Member
Systems Architect & Analyst with concentration in various IT technologies, especially on Microsoft platform. He is an active member of Sharepoint Community and areas of expertise are ASP.Net, SharePoint, WinForms and Workflow technologies. You can visit his blog
http://www.dotnetsoldier.blogspot.com/

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

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralRe: I'm not able to fetch the entire content of the text documentmemberZiyad Mohammad11 Sep '09 - 15:24 
Please send me the code snippet if you could not find the resolution yet..
 

QuestionHow can I show the file in the same window ? [modified]memberdrorby12 Mar '09 - 5:10 
Hi
 
i dont whant that the file will open in anther window.
How can i show it in the same window? or in iframe?
 
thanks
 
modified on Thursday, March 12, 2009 11:18 AM

AnswerRe: How can I show the file in the same window ?memberZiyad Mohammad11 Sep '09 - 15:25 
Yes..it is possible with iframe or a simple frame. You can load the page dynamically in iframe and the BLOB retrieval logic should be built-in inside iframe page
 

GeneralSize filememberarturo10 Mar '09 - 11:21 
which is the maximum size of a file that can be used with this method?
 
if my size file is 10Mb, it's work fine???
 
thank u
GeneralRe: Size filememberZiyad Mohammad11 Sep '09 - 15:26 
There is no hard limit on file size as the file is stored in database as blob.
 

GeneralGetting garble-goopmemberfiesty8 Oct '08 - 6:57 
I used the above code, and at first, everything seemed to work properly. Filename comes up, prompt to download file, and saves. But when the downloaded file opens in Word, all it is lines and lines of junk. Ideas why?Confused | :confused:
GeneralRe: Getting garble-goopmemberZiyad Mohammad11 Sep '09 - 15:27 
Your retrieval logic might not have written properly. The reason could be the full size of the file may not be written successfully..
 

QuestionWhy you declare buffer array if you don't use it further in the code?memberAlexey Prosyankin12 Aug '08 - 4:13 
Another question. How to place in a database a file with a big size? With this example I can't place any file with size more than 2Mb.
Thanks
AnswerRe: Why you declare buffer array if you don't use it further in the code?memberZiyad Mohammad11 Sep '09 - 15:29 
You should use the "Image" datatype while designing database schema.
 

Generalcompress/decompressmemberSAMir Nigam5 Aug '08 - 20:26 
Great. It'll nice if you compress/decompress blobs before storing/retrieve.
 
SAMir Nigam

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130523.1 | Last Updated 6 Aug 2008
Article Copyright 2007 by Ziyad Mohammad
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid