文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>C# 事务控制循环插入数据 同一sql语句

C# 事务控制循环插入数据 同一sql语句

时间:2011-05-13  来源:疯癫NET


public int ExecuteSql(List<string> listsql)
{
OleDbCommand command
= null;
try
{
Open();
command.Connection
= conn;
command.Transaction
= conn.BeginTransaction();

int i=0;
foreach (string sql in listsql)
{
command.CommandText
= sql;
i
+= command.ExecuteNonQuery();
}

command.Transaction.Commit();
return i;
}
catch (OleDbException e)
{
command.Transaction.Rollback();
foreach (string sql in listsql)
log.Error(sql, e);
}
return 0;
}
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载