How to Get DataRow Based on DataGridView in C#

In this tutorial, I will teach you how to get DataRow Based on DataGridView using C#. This method can easily get the data in a selected row in the datagridview. It also extracted the data and display it in a certain textbox when you click the cells in a row inside the datagridview. I used Microsoft Visual Studio 2015 and XAMPP to develop this application.

Creating Database

Create a database named “db_user”. Write the following query to create a table and add the data in the table.
  1. CREATE TABLE `tbl_user` (
  2.   `UserID` int(11) NOT NULL,
  3.   `Fullname` varchar(30) NOT NULL,
  4.   `Username` varchar(90) NOT NULL,
  5.   `Pass` varchar(90) NOT NULL,
  6.   `UserType` varchar(30) NOT NULL
  7.  
  8. --
  9. -- Dumping data for table `tbl_user`
  10. --
  11.  
  12. INSERT INTO `tbl_user` (`UserID`, `Fullname`, `Username`, `Pass`, `UserType`) VALUES
  13. (1, 'Janno Palacios', 'janobe', 'admin', 'Administrator'),
  14. (2, 'Jeanniebe Nillos', 'jean', 'janobe', 'Staff');
  15.  
  16. --
  17. -- Indexes for dumped tables
  18. --
  19.  
  20. --
  21. -- Indexes for table `tbl_user`
  22. --
  23. ALTER TABLE `tbl_user`
  24.   ADD PRIMARY KEY (`UserID`);

Creating Application

Step 1

Open Microsoft Visual Studio 2015 and create a new windows form application for c#. ps1

Step 2

Do the form just like shown below. ps2

Step 3

Press F7 to open the code editor. In the code editor, add a namespace to access MySQL libraries
  1.  
  2. using MySql.Data.MySqlClient;

Step 4

Establish a connection between C# and MySQL database. After that, declare all the classes and variables that are needed.
  1.  
  2.         MySqlConnection con = new MySqlConnection("server=localhost;user id=root;password=;database=db_user;sslMode=none");
  3.         MySqlCommand cmd;
  4.         MySqlDataAdapter da;
  5.         DataTable dt;
  6.         string sql;
  7.         int maxrow;

Step 5

Create a method for retrieving data in the database.
  1.  
  2.         private void load_Data(string sql)
  3.         {
  4.             try
  5.             {
  6.                 con.Open();
  7.                 cmd = new MySqlCommand();
  8.                 da = new MySqlDataAdapter();
  9.                 dt = new DataTable();
  10.  
  11.                 cmd.Connection = con;
  12.                 cmd.CommandText = sql;
  13.  
  14.                 da.SelectCommand = cmd;
  15.                 da.Fill(dt);
  16.                 dataGridView1.DataSource = dt;
  17.             }
  18.             catch (Exception ex)
  19.             {
  20.                 MessageBox.Show(ex.Message);
  21.             }
  22.             finally
  23.             {
  24.                 con.Close();
  25.                 da.Dispose();
  26.             }
  27.         }

Step 6

Create a method to extract the data and send it into the textboxes.
  1.  
  2.         private void retrieve_Data(string sql)
  3.         {
  4.             try
  5.             {
  6.                 con.Open();
  7.                 cmd = new MySqlCommand();
  8.                 da = new MySqlDataAdapter();
  9.                 dt = new DataTable();
  10.  
  11.                 cmd.Connection = con;
  12.                 cmd.CommandText = sql;
  13.  
  14.                 da.SelectCommand = cmd;
  15.                 da.Fill(dt);
  16.  
  17.                 maxrow = dt.Rows.Count;
  18.                 if (maxrow > 0)
  19.                 {
  20.                     txtID.Text = dt.Rows[0].Field<int>(0).ToString();
  21.                     txtName.Text = dt.Rows[0].Field<string>(1);
  22.                     txtUsername.Text = dt.Rows[0].Field<string>(2);
  23.                     txtPassword.Text = dt.Rows[0].Field<string>(3);
  24.                     txtRole.Text = dt.Rows[0].Field<string>(4);
  25.                 }
  26.             }
  27.             catch(Exception ex)
  28.             {
  29.                 MessageBox.Show(ex.Message);
  30.             }
  31.             finally
  32.             {
  33.                 con.Close();
  34.                 da.Dispose();
  35.             }
  36.         }

Step 7

Write the following code for retrieving data in the first load of the form
  1.  
  2.         private void Form1_Load(object sender, EventArgs e)
  3.         {
  4.             sql = "Select * From tbl_user ";
  5.             load_Data(sql);
  6.         }  

Step 8

Write the following code for sending data in the textboxes when the row of the datagridview is clicked.
  1.  
  2.         private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
  3.         {
  4.             sql = "Select * From tbl_user Where UserID = " + dataGridView1.CurrentRow.Cells[0].Value;
  5.             retrieve_Data(sql);
  6.         }
The complete source code is included you can download it and run it on your computer. For any questions about this article. You can contact me @ Email – [email protected] Mobile No. – 09305235027 – TNT Or feel free to comment below.

Add new comment