Create a database in Microsoft Visual Studio 2010, how to create a database in vb2010, tutorial on database in vb2010
Hello friends, hope you all are enjoying good health. Today, I am going to share How to create a Database in Microsoft Visual Studio 2010. Around two to three months ago, I have shared a topic on Microsoft Visual Basic 2010 - Com Port  in which I have explained completely how to make the serial communication in Microsoft Visual studio using visual basic language. Today I am going to share another complete tutorial on how to create a database in Microsoft visual studio. Its a most common project in computer science which usually students do as a semester project, so I thought of sharing it here. I have divided this project or tutorial into three parts, today we will just create a simple database in which we can add out objects easily and later on we will add few functionality in it. In this tutorial we are going to create a database driven application. In this tutorial we are going to create a simple contact form database. Simply follow these steps. I have also posted How to add Button Control in VB Database  and How to Update Database Table with Programming in VB 2010. You must read them as well if you are planning to work on VB database. So, let's get started with creating a Database in Microsoft Visual Studio 2010.

Creating a Database in Microsoft Visual Studio 2010

  • I have tried my best to make this creation of database in Microsoft Visual Studio as simple as possible, that's why I have added screenshot of each step with commenting but still if you guys have any problem at any step ask in comments. At the end of this tutorial, we will create a database driven application as shown in the figure below:
    Create a database in Microsoft Visual Studio 2010, how to create a database in vb2010, tutorial on database in vb2010

Step 1 : Creating New Project

  • First of all open the Microsoft Visual Studio 2010 and click on the New Project as shown in figure below:
Create a database in Microsoft Visual Studio 2010, how to create a database in vb2010, tutorial on database in vb2010
  •  After clicking it, the below screen will show. Now, choose the language and the project type and then give this project a name and click OK. In our project I am using Visual Basic language and project type is Windows Form Application.
Creating-a-Database-in-Microsoft-Visual-Studio-2010-2
  •  It will create a new project for you, where we are gonna add the database.
Create a database in Microsoft Visual Studio 2010, how to create a database in vb2010, tutorial on database in vb2010

Step 2 : Creating a Database

  • Now we are gonna create a database in our project.
  • For this first go to the Solution Explorer in your project.
  • Now right click on your project name and then click on Add and finally click on New Item.
Note :
  • If you can't find it click on View in the above menu tab and then click on Solution Explorer.
  • If you can't find the Solution Explorer then click on View in the above menu tab and then click on Solution Explorer.
Create a database in Microsoft Visual Studio 2010, how to create a database in vb2010, tutorial on database in vb2010
  • After clicking on New Item, a list of items will open up as shown in below figure. Now from these select the Service Based Database. Give it a name like I gave it Contacts.mdf and then click on Add.
Create a database in Microsoft Visual Studio 2010, how to create a database in vb2010, tutorial on database in vb2010
  •  That's now gonna open up a data source wizard as shown in below figure. Just cancel it for now as we don't have anything right now to add in our database.
Create a database in Microsoft Visual Studio 2010, how to create a database in vb2010, tutorial on database in vb2010
  •  Now our database has been created which you can also see in the solution explorer but rite now its empty, so now in the next step we are gonna add a table in our database.

Step 3 : Creating a Table

  • Now, double click on the database which we just created in the step 2 and named it Contacts.mdf. (You will find it in Solution Explorer)
  • Double clicking the database will open up Server Explorer.
  • Now in the Server Explorer, right click on the Tables and then Add New Table.
Create a database in Microsoft Visual Studio 2010, how to create a database in vb2010, tutorial on database in vb2010
  • Now, it will open a Table where we will add the Columns Name of our Table.
  • I have given the first Column as ColumnID and Data Type is int and unmark the Allow Nulls Option.
  • Now click on the Primary Key as shown in below figure.
  • After that go in the properties of table and click on Identity Specification to expand it.
  • Now change the option from No to Yes.
  • I have done this to make it auto incremented, now as you add the data in it the ContactID will be incremented on its own showning you the total number of data present in the Table.
Create a database in Microsoft Visual Studio 2010, how to create a database in vb2010, tutorial on database in vb2010
  •  Now quickly fill the other columns name as shown in below figure, you can choose any data type you want but I have choosen varchar(50).
  • Now click on Save button to save the table and it will ask for the table name.
  • Give the table name and click Ok.
  • Now close this tab.
Create a database in Microsoft Visual Studio 2010, how to create a database in vb2010, tutorial on database in vb2010
  • Now our table has been created, in the next step we are gonna add some data in the table.

Step 4 : Adding Data in the Table

  • In order to add data in the table we just created, go to Server Explorer and Expand the Table Section.
  • In the Table Section, you will get your table which we created in the Step3.
  • Right Click on the Table which we named Contact Form and then Click on Show Table Data.
Create a database in Microsoft Visual Studio 2010, how to create a database in vb2010, tutorial on database in vb2010
  •  It will open up the Contact Form data table. Now fill the few lines as you can see I have added few info in it and then click Save.
  • It will ask for the name, remain the name as it is and click Save.
Create a database in Microsoft Visual Studio 2010, how to create a database in vb2010, tutorial on database in vb2010
  •  Uptill now, we have created our database and then we created a table and added some data in it.
  • Now we are gonna attach a data source with our database in the next step.

Step 5 : Attach a Data Source

  • Now we need to attach a data source with our database.
  • For this first click on Data and then Add New Data Source as shown in below figure.
Create a database in Microsoft Visual Studio 2010, how to create a database in vb2010, tutorial on database in vb2010
  • Now it will open the data source configuration wizard. Select the database and click on Next.
Create a database in Microsoft Visual Studio 2010, how to create a database in vb2010, tutorial on database in vb2010
  •  Again click on the Next as shown in below figure.
Create a database in Microsoft Visual Studio 2010, how to create a database in vb2010, tutorial on database in vb2010
  •  Now we need to attach this data source with the database which we created in the Step 2, so select the Contacts.mdf database and click Next.
Create a database in Microsoft Visual Studio 2010, how to create a database in vb2010, tutorial on database in vb2010
  •  Now it will ask for the components you want to add in your data source.
  • Click on the Tables to expand and the select Contact Form, this is the table which we created in step 3.
  • Now click Finish.
Create a database in Microsoft Visual Studio 2010, how to create a database in vb2010, tutorial on database in vb2010
  •  Now we have created our data source which contains the table. In the next step we are gonna add this database on our form so that we can use it easily.

Step 6 : Adding Database on the Form

  • Now go to the Data Source, if you cant find it then open it from Data tab in the top menu.
  • Now click on the Contact Form (which is our table) and drag it to the Form Board as shown in the below figure.
  • Now re size it using the mouse according to your form.
Create a database in Microsoft Visual Studio 2010, how to create a database in vb2010, tutorial on database in vb2010
  • Next click on the Contact Form in the Data Source and select Details, it will give us detail view of our database.
Create a database in Microsoft Visual Studio 2010, how to create a database in vb2010, tutorial on database in vb2010
  •  Now again click the Contact Form and drag it in the Form Board and it will show like detail view as you can see in the figure below.
Create a database in Microsoft Visual Studio 2010, how to create a database in vb2010, tutorial on database in vb2010
  •  We have add the both views on our board. Now run it and your project will open up.
  • Now you can add or delete or edit any column and then save it.
  •  So the final form of our project is something like that.
Create a database in Microsoft Visual Studio 2010, how to create a database in vb2010, tutorial on database in vb2010
  • You can see the above bar where are options to add, delete or move forward, backward etc.
  • In the next tutorial we will add some functionality in it like adding new column with button and save etc.
  • Hope you guys enjoyed it. If someone needs this database in Microsoft Visual studio along with the exe file of this project then Subscribe Us via Email and post your email in the comments and we will email it to you.
That's all for today, and I hope you guys are not familiar with How to create Database in microsoft visual studio 2010, will meet you in the next tutorial, till then take care ALLAH HAFIZ. :))