update any table in database by transcation

本文介绍两种批量更新数据库的方法:一种是通过循环执行SQL语句来更新指定的数据表;另一种建议使用存储过程,尤其是在多个表之间存在关联的情况下,推荐在数据库层面实现数据变更。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

方法一: Public static bool UpdateDataBase(DataSet ds, string[] tableName, string[] tempSql) {              SqlConnection conn = new SqlConnection(connstring);         conn.Open();         SqlTransaction tran = conn.BegainTransaction();         try         {             for (int i = 0; i < tableName.Length; i++)             {                 SqlCommand cmd = new SqlCommand(tempSql[i], conn);                 cmd.Transaction = tran;                 SqlDataAdapter da = new SqlDataAdapter(cmd);                 SqlCommandBuilder bld = new SqlCommandBuilder(da);                 da.Update(ds, tableName[i]);             }             ds.AcceptChanges();         }         catch(Exception ex)         {             tran.Rollback();             MessageBox.Show("数据访问异常: "+ex.ToString());             return false;         }         tran.Commit();         return true; } 方法二: 多个表数据变更,你最好写成存储过程吧,要是多个表有关联的话,最好是数据库内部去实现
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值