Proxy > Gmail Facebook Yahoo!

ASP.NET Photo Album Part 1 - The Database





ASP.NET Database Tutorial

This is the first part of the ASP.NET Photo Album tutorial series. This tutorial will walk you through the steps of creating the necessary database to hold our image data with ASP.NET 4.0 and C#.


Adding the Database
To begin creating our photo album, we will need to add a database to our web site that will allow us to store all of the necessary data that is associated with our images. In this tutorial, we will be storing our images as binary data in the database. At this point, I have created a new ASP.NET Empty Web Site. To begin:

  1. Right click the project in your solution explorer.
  2. Select add ASP.NET folder.
  3. Select App_Data.
  4. Right click the App_Data folder.
  5. Select add new item...
  6. Select a SQL Database.
  7. Name it 'Database.mdf'.
  8. Click add.
The Data
For this photo album, we will allow the user to associate a date and a message with each image. That being said, we will need that data on top of the data we will need to store the image. This means that we will need to store the following:

  • Image ID - This will be the primary key and identity of the table that will serve as the unique identifier for each image.
  • Image Binary - The actual binary data of the image.
  • Image Size - The size of the image in bytes.
  • Image Type - The type of image.
  • Image Date - The date associated with the image by the user.
  • Image Message - The message associated with the image by the user.
Adding the Table
Now that we have identified what data we need to store, we need to go ahead and add our table. To do this:

  1. Expand the Database.mdf folder in your server/database explorer.
  2. Right click the Tables folder.
  3. Select add new table.
  4. Add the following columns with their respective types to the table:
    Column Name  Data Type  Allow Nulls? 
    ImgId  int  No 
    ImgBin  image  No 
    ImgSize  bigint  No 
    ImgType  nvarchar(50)  No 
    ImgDate  date  Yes 
    ImgMessage  nvarchar(1024)  Yes 
  5. Right click the ImgId column and select Set Primary Key.
  6. Change the IsIdentity property of the ImgId column to 'Yes'.
Adding the ConnectionString
Now that we have our database all setup, all we have left to do is add in a connection string to it so that we can access it in code. To do this, open up the Web.Config file for editing and add in the following code between the <configuration> and <system.web> tags:

<connectionStrings>
    <add name="ConnectionString" connectionString="Data Source=.\SQLEXPRESS;
AttachDbFilename=|DataDirectory|\Database.mdf;Integrated Security=True;
User Instance=True" providerName="System.Data.SqlClient"/>
</connectionStrings>



Responses

0 Respones to "ASP.NET Photo Album Part 1 - The Database"


Send mail to your Friends.  

Expert Feed

 
Return to top of page Copyright © 2011 | My Code Logic Designed by Suneel Kumar