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;
            }
  • 相关阅读:
    第二代:晶体管计算机
    第一代计算机
    Android应用在不同版本间兼容性处理
    eventBus
    realm
    ijkplayer详解AAA
    USB 3.0规范中译本 第3章 USB 3.0体系结构概览
    ES6 学习笔记
    07_通过上下文获取常见目录
    06_登陆案例保存信息完成
  • 原文地址:https://www.cnblogs.com/PeaCode/p/3837782.html
Copyright © 2011-2022 走看看