I will discuss ADO.NET using SQL Server Database with Examples in this article. Please read our previous article, where we discussed the Introduction of ADO.NET. At the end of this article, you will understand how to connect with the SQL Server database using ADO.NET. I hope you have SQL Server installed on your machine. We are using the SQL Server Management Studio (SSMS) Tool to interact with the SQL Server.
Once you open SSMS (SQL Server Management Studio), It will prompt you to connect to the server window. Here, you need to provide the server name and authentication details (I am going with the Windows Authentication), select Database Engine as the server type, and finally, click the Connect button, as shown in the image below.
Once you click on the Connect button, it will connect to the SQL Server Database, and after a successful connection, it will display the following window.
To create a database using GUI, you need to select the database option from Object Explorer and then right-click on it. It pops up an options menu, and here, you need to click on the New Database option, as shown in the below image.
Once you click on the New Database option, it will open the following New Database window. Here, you must provide the database name and click the OK button. Here, I created a database with the name Student. But it is up to you; you can provide any meaningful name you choose.
Once you click on the OK button, it will create a Student database, and you can see the Student database in the object explorer, as shown in the image below.
That’s it. Our database part is over. Now, let us move to the ADO.NET part.
Once the Student Database is ready, let’s move and create a table (Student table) using the ADO.NET Provider and C# Code. Open Visual Studio 2017 (you can use any version of Visual Studio), then create a new .NET console application project. Once you create the project, then modify the Program.cs class file as shown below. In this article, I am not going to explain the code. This article will show you how to communicate with an SQL Server database. From our next article onwards, I will explain everything in detail.
Now, execute the program, and you should see the following message on the console.
We can see the created table in Microsoft SQL Server Management Studio. It shows the created table as shown below.
See, we have the Student table within the Student database. As of now, the Student table is empty. Insert one record into the Student table using ADO.NET and C#.
Please modify the Program.cs class file as shown below. Here, we will insert a record into the student table.
Once you run the application, you will get the following output.
Here, we will retrieve the inserted data from the Student table of the student database. Please modify the Program.cs class file as shown below.
You will get the following output when you run the above program.
As of now, the student table contains one record. Let us delete that record using ADO.NET and C#. Please modify the Program.cs class file code as shown below which will delete the record from the Student table.
It will display the following output once you execute the program.
If you verify the student table, you will see that the record is deleted. In this article, I didn’t explain a single line of code intentionally. I will explain everything in detail in our next article.
Using ADO.NET with SQL Server involves establishing a connection to the SQL Server database, executing queries, retrieving and manipulating data, and managing transactions. Here’s an overview of how you can use ADO.NET with SQL Server:
Create a connection string with the necessary details to connect to your SQL Server database, such as the server name, database name, and authentication credentials.
Use the SqlCommand class to create and execute SQL queries against the database. You can perform various types of queries, such as SELECT, INSERT, UPDATE, DELETE, and stored procedures.
Use the SqlDataReader to retrieve and process data returned by SELECT queries. Iterate through the rows using the Read() method and access column values using indexer or GetString(), GetInt32(), etc., methods.
For data modification (UPDATE, INSERT, DELETE), you can use the ExecuteNonQuery() method of SqlCommand.
You can manage transactions using the SqlTransaction class. Transactions ensure that a group of operations is completed entirely or rolled back if an error occurs.
Always close the connection when you’re done using it to free up resources.
Remember that ADO.NET involves more manual handling than higher-level ORMs like Entity Framework. While ADO.NET provides more control, it also requires writing more code. Depending on your project’s needs and your familiarity with ADO.NET, you might use ADO.NET directly or explore alternatives like Entity Framework for more abstraction and ease of use.
In the next article, I will discuss ADO.NET SqlConnection Class in detail. Here, I explain ADO.NET using SQL Server, i.e., how to connect to SQL server using ADO.NET. I hope you enjoy this article. I would like to have your feedback. Please post your feedback, questions, or comments about this article.