首页 > 开发 > 综合 > 正文

C#中关于通过dataGrid更新数据库

2024-07-21 02:22:50
字体:
来源:转载
供稿:网友
各位大虾好!我刚刚接触c#.net学习不久,原来一直在用delphi做开发,突然转型感觉甚是不爽,这两天研究了一下如何通过datagrid更新数据库记录的问题,有点小收获,在这里我把我的方法贴出来,供各位大虾斧正!谢谢!
//*************************遍历datagrid行更新数据******************************************
private void updatefromdatagrid()
{
string update_sql="";

//开始更新
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;

//遍历datagrid所有数据并修改
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();
}

//关闭连接节约网络资源
conn_update.close();
}


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表