zoukankan      html  css  js  c++  java
  • C#数据层添加事务功能

    例子
            public bool Save(ProjectModel project)
            {
                int Result = 0;
                SqlConnection Conn = new SqlConnection(SqlHelper.connectionString);
              Conn.Open();
              SqlTransaction Trans;
              Trans = Conn.BeginTransaction();
              try
                {
                    SqlParameter[] sqlParameter1 = new SqlParameter[]{
                        new SqlParameter{ ParameterName="@EmployeeID",Value= project.EmployeeID}               
                    };
                    
                    int projectID = Convert.ToInt16(SqlHelper.ExecuteScalar(Trans, CommandType.StoredProcedure, "SaveProject", sqlParameter1));
                    if (projectID != 0)
                    {
    
    
                        
                        if (project.LinkManinfoList.Count > 0)
                        {
                            string sqlText = "";
                            for (int i = 0; i < project.LinkManinfoList.Count; i++)
                            {
                                sqlText = "Insert into Customer(ProjectID)values('" + projectID + "')";
                                Result += SqlHelper.ExecuteSql(sqlText);
                            }
                        }
                   
                        if (!string.IsNullOrEmpty(project.ProjectStage))
                        {
                            string sqlText2 = "insert into ProjectStageCondition ()";
                            SqlParameter[] sqlParameter3 = new SqlParameter[]{
                                new SqlParameter{ ParameterName="@ProjectStageDesc",Value= project.ProjectStage}
                              
                            Result += SqlHelper.ExecuteSql(sqlText2, sqlParameter3);
                        }
                        else { Result++; }
    
    
                    }
                  
               Trans.Commit();
                }
                catch (Exception ex)
                {
                   Trans.Rollback();
                }
                finally
                {
                   Conn.Close();
                }
                return Result == project.LinkManinfoList.Count;
            }
  • 相关阅读:
    ELK的学习与应用
    windows 常用命令
    Electron笔记
    C#基础
    IIS运行NetCore程序
    nuget打包
    web pack备忘
    基于并发订课系统的架构演变
    面试造核弹的童话
    Python3-接口自动化-11-使用join方法请求参数拼接,格式key1=value1&keys=value2....
  • 原文地址:https://www.cnblogs.com/PeaCode/p/3837782.html
Copyright © 2011-2022 走看看