In C # about updating the database through the DataGrid

Source: Internet
Author: User
datagrid| Data | Database Hey, prawns! I just contacted C #. NET study soon, the original has been in the development of Delphi, a sudden transformation feeling is very uncomfortable, this two days to study how to update the database records through the DataGrid problem, a little harvest, here I put my method posted out for you prawns treatise! Thank you!
Traversing the DataGrid row to update data ******************************************
private void Updatefromdatagrid ()
{
String Update_sql= "";

Start update
System.Data.SqlClient.SqlConnection conn_update=new SqlConnection ();
Conn_update. Close ();
Conn_update. Connectionstring=conntsql;
Conn_update. Open ();

System.Data.SqlClient.SqlCommand comm_update=new SqlCommand ();
Comm_update. Connection=conn_update;

System.Data.SqlClient.SqlDataAdapter Da_update=new SqlDataAdapter ();
Da_update. Updatecommand=comm_update;

Traverses all data in the DataGrid and modifies
for (int i=0;i<=datagrid1.visiblerowcount-2;i++)
{
update_sql= "Update client_manage set Client_name= '" +datagrid1[i,1]. ToString () + "', client_phone= '" +datagrid1[i,2]. ToString () + "', client_address= '" +datagrid1[i,3]. ToString () + "' Where client_id=" +datagrid1[i,0]. ToString ();
Comm_update.commandtext=update_sql;
Comm_update. ExecuteNonQuery ();
}

Close Connection Save network resources
Conn_update. Close ();
}




Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.