c#批量更新list对象sql
注意:
1.语句中"set "后有空格,
2.最后一个if一定有值,且接连的sql字段 无 逗号
3.parameterList.Clear();
/// <summary>
/// 批量更新
/// </summary>
public void UpdateList(List<ProModule.Model.ept_scn> list)
{
StringBuilder strSql = new StringBuilder();
strSql.Append("update ept_scn set ");
List<MySqlParameter> parameterList = new List<MySqlParameter>();
int x = list.Count;
Hashtable SQLStringList = new Hashtable();
for (int i = 0; i < x; i++)
{
ProModule.Model.ept_scn scn = list[i];
int y = 0;
if (scn.scn != null)
{
strSql.Append("scn=@scn,");
parameterList.Add(new MySqlParameter("@scn", MySqlDbType.VarChar, 50));
parameterList[y].Value = scn.scn;
y = y + 1;
}
if (scn.is_lock != null)
{
strSql.Append("is_lock=@is_lock,");
parameterList.Add(new MySqlParameter("@is_lock", MySqlDbType.Int32, 11));
parameterList[y].Value = scn.is_lock;
y = y + 1;
}
if (scn.is_audit != null)
{
strSql.Append("is_audit=@is_audit,");
parameterList.Add(new MySqlParameter("@is_audit", MySqlDbType.Int32, 11));
parameterList[y].Value = scn.is_audit;
y = y + 1;
}
if (scn.is_abandon != null)
{
strSql.Append("is_abandon=@is_abandon,");
parameterList.Add(new MySqlParameter("@is_abandon", MySqlDbType.Int32, 11));
parameterList[y].Value = scn.is_abandon;
y = y + 1;
}
if (scn.is_finish != null)
{
strSql.Append("is_finish=@is_finish,");
parameterList.Add(new MySqlParameter("@is_finish", MySqlDbType.Int32, 11));
parameterList[y].Value = scn.is_finish;
y = y + 1;
}
if (scn.remark != null)
{
strSql.Append("remark=@remark,");
parameterList.Add(new MySqlParameter("@remark", MySqlDbType.VarChar, 50));
parameterList[y].Value = scn.remark;
y = y + 1;
}
if (scn.msg != null)
{
strSql.Append("msg=@msg,");
parameterList.Add(new MySqlParameter("@msg", MySqlDbType.VarChar, 50));
parameterList[y].Value = scn.msg;
y = y + 1;
}
if (scn.audit_by != null)
{
strSql.Append("audit_by=@audit_by,");
parameterList.Add(new MySqlParameter("@audit_by", MySqlDbType.VarChar, 50));
parameterList[y].Value = scn.audit_by;
y = y + 1;
}
if (scn.audit_time != null)
{
strSql.Append("audit_time=@audit_time,");
parameterList.Add(new MySqlParameter("@audit_time", MySqlDbType.DateTime));
parameterList[y].Value = scn.audit_time;
y = y + 1;
}
if (scn.checks != null)
{
strSql.Append("checks=@checks");
parameterList.Add(new MySqlParameter("@checks", MySqlDbType.Int32, 11));
parameterList[y].Value = scn.checks;
y = y + 1;
}
strSql.Append(" where id=@id ");
parameterList.Add(new MySqlParameter("@id", MySqlDbType.VarChar, 50));
parameterList[y].Value = scn.id;
MySqlParameter[] parameters = parameterList.ToArray(); ;
SQLStringList.Add(strSql.ToString(), parameters);
parameterList.Clear();
}
DbHelperMySQL.ExecuteSqlTran(SQLStringList);
}
c#批量更新list对象sql的更多相关文章
- 批量更新数据小心SQL触发器的陷阱
批量更新数据时候,Inserted和Deleted临时表也是批量的,但触发器只会调用执行一次!两个概念千万不要弄混淆! 错误的理解:例如:创建在A表上创建了一个Update触发器,里面写的是Updat ...
- Hibernate批量更新和批量删除批量添加(转)
通常,在一个Session对象的缓存中只存放数量有限的持久化对象,等到Session对象处理事务完毕,还要关闭Session对象,从而及时释放Session的缓存占用的内存.批量处理数据是指在一个事务 ...
- druid + mysql + mybatis 批量更新报错
首先 批量更新报错 sql injection violation, multi-statement not allow 然后看了博客:https://blog.csdn.net/qq_3634595 ...
- LINQ To SQL在N层应用程序中的CUD操作、批量删除、批量更新
原文:LINQ To SQL在N层应用程序中的CUD操作.批量删除.批量更新 0. 说明 Linq to Sql,以下简称L2S. 以下文中所指的两层和三层结构,分别如下图所示: 准确的说,这里 ...
- SQL 将2张不相关的表拼接成2列,批量更新至另一张表
update SO_Master set LotteryNo=t2.LotteryNo,UpdateTime=GETDATE() --select sm.LotteryNo,sm.SysNo,t2.L ...
- SQL批量更新数据库中所有用户数据表中字段类型为tinyint为int
--SQL批量更新数据库中所有用户数据表中字段类型为tinyint为int --关键说明:--1.从系统表syscolumns中的查询所有xtype='48'的记录得到类型为[tinyint]的字段- ...
- 高效批量更新 sql 字段的值(从一个表向另一个表更新)
里给出一种更高效.简洁的做法,批量更新SQL ,一句SQL就可以替代麻烦的循环过程,有MS SQLServer.Oracle.DB2下的写法--关键点:t4和t1是同一个table,primary k ...
- mybatis 的批量更新操作sql
转: mybatis 的批量更新操作sql 2018年07月23日 10:38:19 海力布 阅读数:1689 版权声明:本文为博主原创文章,未经博主允许不得转载. https://blog.cs ...
- SQL批量更新数据
SQL批量更新数据 step1:导入Excel数据, 具体见百度.注意点:一列中含有float型数据和文本数据的时候,导入要将Excel中的表格属性改成文本,或在数字项目前加个单引号. step2 ...
随机推荐
- sql语句基础(一)
数据库基本操作 创建数据库 CREATE DATABASE database-nam 2. 删除数据库 drop database dbname 3. 备份sql server --- 创建 备 ...
- android 开发 实现一个app的引导页面,使用ViewPager组件(此引导的最后一页的Button会直接写在最后一页布局里,跟随布局滑进滑出)
基本ViewPager组件使用方式与我之前写的https://blog.csdn.net/qq_37217804/article/details/80332634 这篇博客一致. 下面我们将重点详细解 ...
- [Unity插件]Lua行为树(三):组合节点Sequence
Sequence的继承关系如下: Sequence->Composite->ParentTask->Task 上一篇已经实现了简单版本的ParentTask和Task(基于Behav ...
- uva-10341-二分法
题意:已知方程的根在0-1范围内,求解方程的根,如果方程不存在根,那就输出 no solution. 直接二分,保留四位小数. #include "pch.h" #include ...
- Timer TimerTask schedule scheduleAtFixedRate
jdk 自带的 timer 框架是有缺陷的, 其功能简单,而且有时候它的api 不好理解. import java.util.Date; import java.util.Timer; import ...
- webform(复合控件)
一.组合单选 RadioButtonList 单选按钮与简单控件不同,可理解为在集合中放置多对象 例: <asp:RadioButtonList ID="RadioButtonList ...
- Android自定义View学习(四)
硬件加速 参考:HenCoder Android 自定义 View 1-8 硬件加速 硬件加速能够让绘制变快,主要有三个原因: 本来由 CPU 自己来做的事,分摊给了 GPU 一部分,自然可以提高效率 ...
- Linux 指令(一)文件/目录操作
1. 创建目录 mkdir 格式 mkdir [OPTION]... DIRECTORY... 选项 -p 递归创建 -v 创建时提示 例: root@ubuntu:/home/eko/x# mkdi ...
- Duboo 与springboot整合
https://github.com/apache/incubator-dubbo-spring-boot-project 当采用properties方式时,可以用下方的注解 1.pom <de ...
- mysql root密码修改
1.假如之前没设置密码,现在想成test mysqladmin -u root password test 2.假如之前密码是1234,现在想改成test mysqladmin -u root -p1 ...