C#實現把查詢出的Table作為參數更新到資料庫

来源:https://www.cnblogs.com/wml-it/archive/2020/01/16/12201199.html
-Advertisement-
Play Games

1.ImportData主方法 把傳入為object數組類型,按照下標取出對應的參數,此處為Table和Username public object[] ImportData(object[] Param) { DataTable dt = (DataTable)Param[0]; string m ...


1.ImportData主方法

把傳入為object數組類型,按照下標取出對應的參數,此處為Table和Username

public object[] ImportData(object[] Param)
        {
            DataTable dt = (DataTable)Param[0];
            string msg1 = "", msg2 = "", msg3 = "";
            Hashtable ht = new Hashtable();
            username = Param[1].ToString();//操作人工號
            ExecutionResult result = new ExecutionResult();
            result.Message = "";
            dbTools = new InfoLightDBTools(this.ClientInfo, this.GetClientInfo(ClientInfoType.LoginDB).ToString());
            string SN = ""; string ITEM_NO = ""; string FAILURE = ""; string CORRECT = ""; string ISSUE = ""; string STATUS = ""; string ISSUE_TYPE = "";
            for (int i = 0; i < dt.Rows.Count; i++)
            {
                //需要進行操作的列
                SN = dt.Rows[i]["SERIAL_NUMBER"].ToString();
                ITEM_NO = dt.Rows[i]["ITEM_NO"].ToString();
                FAILURE = dt.Rows[i]["FAILURE_ANALYSE"].ToString();
                CORRECT = dt.Rows[i]["CORRECT_ACTION"].ToString();
                ISSUE = dt.Rows[i]["ISSUE_OWNER"].ToString();
                STATUS = dt.Rows[i]["STATUS"].ToString();
                ISSUE_TYPE = dt.Rows[i]["ISSUE_TYPE"].ToString();
                if (CheckFA(FAILURE))
                {
                    #region Oprator
                    if (!CheckValue(SN, ITEM_NO))//根據Key進行Check數據是否存在,不存在進行Insert,存在則進行Update
                    {                               
                        result = DoInsert(SN, ITEM_NO, FAILURE, CORRECT, ISSUE, ISSUE_TYPE, STATUS);//Insert操作
                        if (!result.Status)
                        {
                            msg1 += "在第" + (i + 1).ToString() + "行,SERIAL_NUMBER: " + SN + " ITEM_NO:" + ITEM_NO + " Insert數據時失敗:" + result.Message;
                            result.Status = false;
                            continue;
                        }
                    }
                    else
                    {
                        result = DoUpdate(SN, ITEM_NO, FAILURE, CORRECT, ISSUE, ISSUE_TYPE, STATUS);//Update 操作
                        if (!result.Status)
                        {
                            msg2 = "在第" + (i + 1).ToString() + "行,SERIAL_NUMBER: " + SN + " ITEM_NO:" + ITEM_NO + " Update數據時失敗:" + result.Message;
                            result.Status = false;
                            continue;
                        }
                    }
                    #endregion
                }
                else
                {
                    msg3 += "Excel中第" + (i + 1).ToString() + "行的FAILURE_ANALYSE值為空!";
                    result.Status = false;
                    continue;
                }          
            }
            result.Message = "";
            if (!string.IsNullOrEmpty(msg1))
            {
                result.Message += " Insert Error: " + msg1;
            }
            if (!string.IsNullOrEmpty(msg2))
            {
                result.Message += " Update Error: " + msg2;
            }
            if (!string.IsNullOrEmpty(msg3))
            {
                result.Message += msg3;
            }

            if (result.Message == "")
            {
                return new object[] { 0, "OK", result.Message };
            }
            else
            {
                return new object[] { 0, "NG", result.Message };
            }  
        }

2.CheckValue

根據主鍵進行Check資料庫中是否存在已有的數據

public bool CheckValue(string sn, string item_no)
        {
            dbTools = new InfoLightDBTools(this.ClientInfo, this.GetClientInfo(ClientInfoType.LoginDB).ToString());
            DataTable dt = new DataTable();
            DataSet ds = new DataSet();
            Hashtable ht = new Hashtable();
            ExecutionResult result = new ExecutionResult();

            string sql = @" SELECT *
  FROM SFISM4.R_FAILURE_ANALYSIS_T T
 where T.Serial_Number = :sn
   and T.Item_No = :item_no
";

            ht.Clear();
            ht.Add("sn", sn);
            ht.Add("item_no", item_no);

            result = this.dbTools.ExecuteUpdateHt(sql, ht);
            ds = (DataSet)this.dbTools.ExecuteQueryDSHt(sql, ht).Anything;

            if (ds != null && ds.Tables[0].Rows.Count > 0)
            {
                return true;
            }
            else
            {
                return false;
            }
        }

3.DoInsert

根主鍵Check的內容為空則進行Insert

 public ExecutionResult DoInsert(string sn, string item_no, string failure, string correct, string issue, string issue_type, string status)
        {
            Hashtable ht = new Hashtable();

            ExecutionResult result = new ExecutionResult();
            this.dbTools = new InfoLightDBTools(this.ClientInfo, this.GetClientInfo(ClientInfoType.LoginDB).ToString());
            string sql = @" insert into SFISM4.R_FAILURE_ANALYSIS_T
  (SERIAL_NUMBER,
   ITEM_NO,
   FAILURE_ANALYSE,
   CORRECT_ACTION,
   ISSUE_OWNER,
   ISSUE_TYPE,
   STATUS,
   CREATE_USER,
   CREATE_TIME)
values
  (:sn,
   :item_no,
   :failure,
   :correct,
   :issue,
   :issue_type,
   :status,
   :username,
   sysdate)
 ";
            ht.Clear();
            ht.Add("SN", sn);
            ht.Add("item_no", item_no);
            ht.Add("failure", failure);
            ht.Add("correct", correct);
            ht.Add("issue", issue);
            ht.Add("issue_type", issue_type);
            ht.Add("status", status);
            ht.Add("username", username);

            result = this.dbTools.ExecuteUpdateHt(sql, ht);
            return result;
        }

4.DoUpdate

根據主鍵Check的內容非空則進行Update

public ExecutionResult DoUpdate(string sn, string item_no, string failure, string correct, string issue, string issue_type, string status)
        {
            Hashtable ht = new Hashtable();
            ExecutionResult result = new ExecutionResult();
            this.dbTools = new InfoLightDBTools(this.ClientInfo, this.GetClientInfo(ClientInfoType.LoginDB).ToString());
            string sql = @" update SFISM4.R_FAILURE_ANALYSIS_T T
   set T.Failure_Analyse = :failure,
       T.Correct_Action  = :correct,
       T.Issue_Owner     = :issue,
       T.ISSUE_TYPE      = :issue_type,
       T.Status          = :status,
       T.Update_User     = :username,
       T.Update_Time     = sysdate,
       T.STATE_FLAG      = 0
 where T.Serial_Number = :sn
   and T.ITEM_NO = :item_no
 ";

            ht.Clear();
            ht.Add("SN", sn);
            ht.Add("item_no", item_no);
            ht.Add("failure", failure);
            ht.Add("correct", correct);
            ht.Add("issue", issue);
            ht.Add("issue_type", issue_type);
            ht.Add("status", status);
            ht.Add("username", username);

            result = this.dbTools.ExecuteUpdateHt(sql, ht);
            return result;

        }
    }

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 上次我們提到了,微軟預設提供基於資源文件的多語言本地化,個人感覺使用起來不是太方便,沒有 json 看起來直觀,於是動手造了一個輪子, dotnet core 基於 json 的本地化組件 ...
  • 工作中常用到的一些知識點,總是用完就忘,第一次嘗試用博客記錄下來,以備後用; Socket通訊,Socket(套接字)是基於TCP/IP通訊方式的封裝好的類,調用時需要添加下麵的服務引用: .......10 using System.Net; 11 using System.Net.Sockets ...
  • 先來看下麵一段html: 這個ng-model名稱帶有一定的規律帶有序號。 先來實現數據綁定,從數據取到數據後,為ng-model綁定相對應的值: var c = response.data $scope.Start1 = $filter("jsonDateFormat")(c.Start1, "y ...
  • Github上優秀的.NET Core開源項目的集合。內容包括:庫、工具、框架、模板引擎、身份認證、資料庫、ORM框架、圖片處理、文本處理、機器學習、日誌、代碼分析、教程等。 Github地址:https://github.com/jasonhua95/awesome-dotnet-core ,【a ...
  • 簡介 在這一節,我們將介紹如何在 Silo 和 Client 中獲取Grain及調用Grain Grain獲取方式 從Grain內部獲取: 從Client獲取: 應用 我們在項目中新增一個教室的概念,學生入學需要到教室先報個到才能分配到學號 1.修改 ,新增兩個介面 2.修改 3.在 中新增 4.在 ...
  • SerialDataReceivedEventHandler無反映不要忘記這2屬性賦值。 serialPort1.DtrEnable = true; serialPort1.RtsEnable = true; ...
  • public partial class Form1 : Form { public Form1() { InitializeComponent(); Dog dog = new Dog(); InsertDog(dog); dog.OnAlert(); //Console.WriteLine(); ...
  • C#實現對Excel操作,根據數據的類型不同或者來源不同會放在不同的頁簽中,C#實現添加頁簽代碼如下:(path為文檔保存的地址,dt為要處理的源數據) public void addSheet(string Path, DataTable dt) { var SlDoc = new SLDocum ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...