• 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;
            }
  • 相关阅读:
    【转】SpringCloud学习
    Springboot中配置druid
    阿里云sql监控配置-druid
    Linux中Java开发常用的软件总结:
    java 搞笑注释
    Python之路-pandas包的详解与使用
    Python之路-numpy模块
    Python之路-Python中的线程与进程
    Python之路-Python常用模块-time模块
    Python之路-Python中文件和异常
  • 原文地址:https://www.cnblogs.com/PeaCode/p/3837782.html
Copyright © 2020-2023  润新知