C#中怎樣連接資料庫並將查詢結果轉為實體類以及如何加入事務

来源:https://www.cnblogs.com/badaoliumangqizhi/archive/2019/12/09/12011007.html
-Advertisement-
Play Games

場景 新建一個程式,需要對數據的表進行查詢並將查詢結果轉換為實體類,然後將多個實體類 再插入到另一個資料庫的表中,執行插入的過程中要使用事務。 註: 博客主頁: https://blog.csdn.net/badao_liumang_qizhi 關註公眾號 霸道的程式猿 獲取編程相關電子書、教程推送 ...


場景

新建一個程式,需要對數據的表進行查詢並將查詢結果轉換為實體類,然後將多個實體類

再插入到另一個資料庫的表中,執行插入的過程中要使用事務。

註:

博客主頁:
https://blog.csdn.net/badao_liumang_qizhi
關註公眾號
霸道的程式猿
獲取編程相關電子書、教程推送與免費下載。

實現

不帶事務只是查詢

//儲存數據的工具初始化
            DataSet idxDs = new DataSet();
            //constr:資料庫連接字元串配置
           stringconstr="server=localhost;database=Badao;uid=sa;pwd=123";
            using (SqlConnection conn=new SqlConnection(constr))
           
            {
  
                conn.Open();
                Console.WriteLine("開始查詢索引數據...");
                //查詢索引數據
                string idxSql = "SELECT * FROM Idx1_1";//獲取sql語句
                SqlDataAdapter idxSda = new SqlDataAdapter(idxSql, conn);   //(查詢語句和連接工具)
                idxSda.Fill(idxDs);    //將適配器數據存入DataSet工具中
             }

 

註:

首先聲明一個DataSet用來存儲執行查詢的結果,然後使用連接數據的字元串打開連接。

然後使用Adapter執行sql語句,將查詢結果填充到Dataset中。

怎樣將查詢結果與實體類對應賦值

                IdxRecord idx = null;
                Console.WriteLine("開始儲存索引數據...");
                foreach (DataRow row in idxDs.Tables[0].Rows)
                {
                    idx = new IdxRecord();
                    idx.IdxID = DataProcessor.RowValue(row, "Idx_ID", 0);
                    idx.DataPoint = DataProcessor.RowValue(row, "Data_Point", 0);
                    idx.ScheduleIndex = DataProcessor.RowValue(row, "Schedule_Index", 0L);                  
                    idxList.Add(idx);
                }

 

註:

聲明一個實體類,其中要有與資料庫列所對應的欄位。

然後將DataSet中的內容與實體列的屬性一一賦值。

最後將實體類對象添加到實體類的list上。

其中DataProcessor.RowValue是一個工具類中的方法,此方法中的第二個參數是對應的資料庫中的列

 public static short RowValue(DataRow dr, string field, short defaultValue)
        {
            short Result = defaultValue;
            if (dr.Table.Columns.Contains(field))
            {
                if (dr[field] != null && dr[field] != DBNull.Value)
                {
                    if (short.TryParse(dr[field].ToString(), out Result))
                    {
                        return Result;
                    }
                }
            }
            else
            {
                Console.WriteLine("DataTable中不存在[" + field + "]列!");
            }
            return defaultValue;
        }

 

怎樣開啟事務並存入數據

            //存入bak資料庫
           stringconstrBak="server=localhost;database=BadaoBak;uid=sa;pwd=123";
            using (SqlConnection conn = new SqlConnection(constrBak))//constr:資料庫連接配置
            {
                conn.Open();
                //開啟事務
                SqlTransaction trans = conn.BeginTransaction();
                SqlCommand cmd = new SqlCommand();
                cmd.Connection = conn;//添加連接工具
                cmd.Transaction = trans;//添加事務
                try
                {
                    cmd.CommandText = "INSERT INTO idx1_1 values  ('" + idx.IdxID + "','" + idx.StepEnd +"')";//添加sql語句
                    cmd.ExecuteNonQuery();//執行
                    Console.WriteLine("插入索引數據成功");
                    trans.Commit();//執行完成之後提交
                   

                }
                catch (Exception e)
                {
                    //執行sql語句失敗,事務回滾
                    trans.Rollback();
                  

                }
                finally
                {
                    conn.Close();

                }
            }

 

完整示例代碼

 public static void Main(string[] args)
        {
            List<IdxRecord> idxList = null;         //索引數據
            //儲存數據的工具初始化
            DataSet idxDs = new DataSet();
            //constr:資料庫連接字元串配置
            string constr = "server=localhost;database=Badao;uid=sa;pwd=123";
            using (SqlConnection conn=new SqlConnection(constr))
            {
                conn.Open();
                Console.WriteLine("開始查詢索引數據...");
                //查詢索引數據
                string idxSql = "SELECT * FROM Idx1_1";//獲取sql語句
                SqlDataAdapter idxSda = new SqlDataAdapter(idxSql, conn);   //(查詢語句和連接工具)
                idxSda.Fill(idxDs);    //將適配器數據存入DataSet工具中
                idxList = new List<IdxRecord>();
                IdxRecord idx = null;
                Console.WriteLine("開始儲存索引數據...");
                foreach (DataRow row in idxDs.Tables[0].Rows)
                {
                    idx = new IdxRecord();
                    idx.IdxID = DataProcessor.RowValue(row, "Idx_ID", 0);
                   
                    idxList.Add(idx);
                }
                Console.WriteLine("儲存索引數據成功,成功儲存數量為:" + idxList.Count);
                Console.WriteLine("查詢索引數據成功");
                Console.WriteLine("開始根據索引數據查詢記錄數據...");
                //在迴圈中根據索引數據查詢記錄數據
                for (int i = 0; i+1 < idxList.Count;i++)
                {
                    List<Record> recordList = new List<Record>();
                    List<List<AuxRecord>> autxRecordsList = new List<List<AuxRecord>>();
                    for (int k = idxList[i].DataPoint; k < idxList[i + 1].DataPoint;k++ )
                    {
                        DataSet recordsDs = new DataSet();
                        DataSet auxTDs = new DataSet();
                        //查詢 記錄數據
                        string recordSql = "SELECT * FROM WsC1_1 where Data_Point =" + k;//獲取sql語句
                        //Console.WriteLine("開始執行的查詢語句為:" + recordSql);
                        SqlDataAdapter recordsSda = new SqlDataAdapter(recordSql, conn);   //(查詢語句和連接工具)
                        recordsSda.Fill(recordsDs);    //將適配器數據存入DataSet工具中
                        Record entity = new Record();
                        DataRow row = recordsDs.Tables[0].Rows[0];
                        entity.DataPoint = DataProcessor.RowValue(row, "Data_Point", 0);
                        entity.ScheduleIndex = DataProcessor.RowValue(row, "Schedule_Index", 0L);
                        
                        recordList.Add(entity);
                        //Console.WriteLine("根據索引數據的DataPoint:" + k + "查詢到的記錄數據的DataPoint:" + entity.DataPoint);

                        //根據索引數據查詢輔助通道溫度數據
                        Console.WriteLine("開始根據記錄數據查詢輔助通道溫度數據....");
                        List<AuxRecord> autxRecords = new List<AuxRecord>();         //輔助通道溫度數據
                        string AuxTSql = "SELECT * FROM Aux1_1_25 where IvIndex =" + entity.AuxIndex;//獲取sql語句
                        SqlDataAdapter AuxTSda = new SqlDataAdapter(AuxTSql, conn);   //(查詢語句和連接工具)
                        AuxTSda.Fill(auxTDs);    //將適配器數據存入DataSet工具中
                        //autxRecords = new List<AuxRecord>();
                        AuxRecord aux = null;
                        foreach (DataRow auxrow in auxTDs.Tables[0].Rows)
                        {
                            aux = new AuxRecord();
                            aux.DataPoint = DataProcessor.RowValue(auxrow, "Data_Point", 0);
                            aux.IvIndex = DataProcessor.RowValue(auxrow, "IvIndex", 0);
                            foreach (DataColumn col in auxTDs.Tables[0].Columns)
                            {
                                if (col.ColumnName.StartsWith("T") || col.ColumnName.StartsWith("V"))
                                {
                                    aux.Data.Add(DataProcessor.RowValue(row, col.ColumnName, 0D));
                                }
                            }
                            autxRecords.Add(aux);
                        }
                        autxRecordsList.Add(autxRecords);
                        Console.WriteLine("根據記錄數據查詢輔助通道溫度數據成功");

                        
                    }
                    //conn.Close();
                    //開始向資料庫插入中傳遞參數
                    bool isStoreSuccess = StoreRecordData(idxList[i],recordList,autxRecordsList);
                    if (isStoreSuccess)
                    {
                        Console.WriteLine("存入資料庫成功");
                    }
                    else
                    {
                        Console.WriteLine("存入資料庫失敗");
                    }
                    //開始休眠
                    Console.WriteLine("開始休眠...");
                    System.Threading.Thread.Sleep(1000 * 5);//
                    Console.WriteLine("休眠結束...");

                }
                
                //Console.WriteLine("查詢輔助通道溫度數據成功");
                //Console.ReadKey();
                
            }
        }

        public static bool StoreRecordData(IdxRecord idx, List<Record> recordList, List<List<AuxRecord>> autxRecordsList)
        {
            //存入bak資料庫
            string constrBak = "server=localhost;database=BadaoBak;uid=sa;pwd=123";
            using (SqlConnection conn = new SqlConnection(constrBak))//constr:資料庫連接配置
            {
                conn.Open();
                //開啟事務
                SqlTransaction trans = conn.BeginTransaction();
                SqlCommand cmd = new SqlCommand();
                cmd.Connection = conn;//添加連接工具
                cmd.Transaction = trans;//添加事務
                try
                {
                    cmd.CommandText = "INSERT INTO idx1_1 values  ('" + idx.IdxID + "','" + idx.DataPoint + "','" + idx.StepEnd +"')";//添加sql語句
                    cmd.ExecuteNonQuery();//執行
                    Console.WriteLine("插入索引數據成功");
                    foreach(Record record in recordList)
                    {
                        cmd.CommandText = "INSERT INTO WsC1_1 values  ('" + record.DataPoint + "','" + record.ScheduleIndex + "','" + record.AuxIndex + "')";//添加sql語句
                        cmd.ExecuteNonQuery();//執行
                    }
                    Console.WriteLine("插入記錄數據成功");
                    foreach (List<AuxRecord> auxRecords in autxRecordsList)
                    {
                        cmd.CommandText = "INSERT INTO Aux1_1_25 values  ('" + auxRecords[0].DataPoint + "','" + auxRecords[0].IvIndex + "','" + auxRecords[0].Data[0] + "')";//添加sql語句
                        cmd.ExecuteNonQuery();//執行
                    }
                    Console.WriteLine("插入輔助通道溫度數據成功");
                    trans.Commit();//執行完成之後提交
                    return true;

                }
                catch (Exception e)
                {
                    //執行sql語句失敗,事務回滾
                    trans.Rollback();
                    return false;

                }
                finally
                {
                    conn.Close();

                }
            }
        }

 


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

-Advertisement-
Play Games
更多相關文章
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...