How to update data in windows application C# .net?

In this tutorial you will learn how to update data using window application form C#. For fronted we used window form application and for backend we used SQL server for database.

Here you will learn step by step update operation.

update

Step 1.

In previous tutorial we were inserting the data in table using window form application. Now we will update the same data with update command. For that we will use previous window form.

Here we are just working on update button.

Step 2.

We already created table in SQL Server in previous tutorial. And record are already is there in table. So no need to create another table and we are working on same table record.

create table

Step 3.

Now move to window form application (Form1.cs) and add following namespace in coding window. Simply double click on window form.

	
	using System.Data.SqlClient;
	
namespace

Step 4.

Now create a connection string to connect with Database. Make your Connection globally like below so that you can access it anywhere in the form.

The connection string that includes the source database name, and other parameters needed to establish the initial connection.

	
	using System;
	using System.Collections.Generic;
	using System.ComponentModel;
	using System.Data;
	using System.Drawing;
	using System.Linq;
	using System.Text;
	using System.Threading.Tasks;
	using System.Windows.Forms;

	using System.Data.SqlClient;

	namespace Intsert
	{
    	public partial class Form1 : Form
    	{
        	public Form1()
        	{
            	InitializeComponent();
        	}

        	//globaly define conection
        	SqlConnection con = new SqlConnection("data source=DESKTOP-F3B3CCJ\SQLEXPRESS; database=master; uid=sa; password=123456;");
        	
    	}
	}
	

Step 5.

Now move to window form design view and double click on update button. Add following code on your update button click.

We are updating the data with unique column field and our unique filed is roll_no field.

	
	private void button2_Click(object sender, EventArgs e)
        {
            con.Open();
            SqlCommand cmd = new SqlCommand("update stuednt set course='" + textBox3.Text + "' where roll_no='" + textBox1.Text + "'", con);
            cmd.ExecuteNonQuery();
            MessageBox.Show("Data Updated Successfully.");
            con.Close();
        }
	

Now run you window form application. Press f5 key from keyword or from start button in Visual Studio.

update table

Here we are updating the course detail of the campsulife.

insert message

Output

Now move to Microsoft SQL Server and see your records in table. For that run SQL Server select query. We updated the Campuslife course MCA to BCA.

sql query

Watch Tutorial Video on YouTube

Watch and Subscribe Now

Post Your Comment