C# DBHelper類 參考

来源:https://www.cnblogs.com/yuer20180726/archive/2019/02/15/10382514.html
-Advertisement-
Play Games

using System;using System.Collections.Generic;using System.Text;using System.Configuration;using System.Data;using System.Data.SqlClient;namespace DAL... ...


複製代碼

using System;
using System.Collections.Generic;
using System.Text;
using System.Configuration;
using System.Data;
using System.Data.SqlClient;

namespace DAL
{
public class SQLHelper
{

//連接字元串
static string strConn = ConfigurationManager.ConnectionStrings["CnnhoRechargePlatformConnectionString"].ToString();



#region 執行查詢,返回DataTable對象-----------------------



public static DataTable GetTable(string strSQL)
{
return GetTable(strSQL, null);
}
public static DataTable GetTable(string strSQL, SqlParameter[] pas)
{
return GetTable(strSQL, pas, CommandType.Text);
}
/// <summary>
/// 執行查詢,返回DataTable對象
/// </summary>
/// <param name="strSQL">sql語句</param>
/// <param name="pas">參數數組</param>
/// <param name="cmdtype">Command類型</param>
/// <returns>DataTable對象</returns>
public static DataTable GetTable(string strSQL, SqlParameter[] pas, CommandType cmdtype)
{
DataTable dt = new DataTable(); ;
using (SqlConnection conn = new SqlConnection(strConn))
{
SqlDataAdapter da = new SqlDataAdapter(strSQL, conn);
da.SelectCommand.CommandType = cmdtype;
if (pas != null)
{
da.SelectCommand.Parameters.AddRange(pas);
}
da.Fill(dt);
}
return dt;
}



#endregion




#region 執行查詢,返回DataSet對象-------------------------




public static DataSet GetDataSet(string strSQL)
{
return GetDataSet(strSQL,null);
}

public static DataSet GetDataSet(string strSQL, SqlParameter[] pas)
{
return GetDataSet(strSQL,pas,CommandType.Text);
}
/// <summary>
/// 執行查詢,返回DataSet對象
/// </summary>
/// <param name="strSQL">sql語句</param>
/// <param name="pas">參數數組</param>
/// <param name="cmdtype">Command類型</param>
/// <returns>DataSet對象</returns>
public static DataSet GetDataSet(string strSQL, SqlParameter[] pas, CommandType cmdtype)
{
DataSet dt = new DataSet(); ;
using (SqlConnection conn = new SqlConnection(strConn))
{
SqlDataAdapter da = new SqlDataAdapter(strSQL, conn);
da.SelectCommand.CommandType = cmdtype;
if (pas != null)
{
da.SelectCommand.Parameters.AddRange(pas);
}
da.Fill(dt);
}
return dt;
}
#endregion





#region 執行非查詢存儲過程和SQL語句-----------------------------




public static int ExcuteProc(string ProcName)
{
return ExcuteSQL(ProcName, null, CommandType.StoredProcedure);
}

public static int ExcuteProc(string ProcName, SqlParameter[] pars)
{
return ExcuteSQL(ProcName, pars, CommandType.StoredProcedure);
}

public static int ExcuteSQL(string strSQL)
{
return ExcuteSQL(strSQL, null);
}

public static int ExcuteSQL(string strSQL, SqlParameter[] paras)
{
return ExcuteSQL(strSQL, paras, CommandType.Text);
}

/// 執行非查詢存儲過程和SQL語句
/// 增、刪、改
/// </summary>
/// <param name="strSQL">要執行的SQL語句</param>
/// <param name="paras">參數列表,沒有參數填入null</param>
/// <param name="cmdType">Command類型</param>
/// <returns>返回影響行數</returns>
public static int ExcuteSQL(string strSQL, SqlParameter[] paras, CommandType cmdType)
{
int i = 0;
using (SqlConnection conn = new SqlConnection(strConn))
{
SqlCommand cmd = new SqlCommand(strSQL, conn);
cmd.CommandType = cmdType;
if (paras != null)
{
cmd.Parameters.AddRange(paras);
}
conn.Open();
i = cmd.ExecuteNonQuery();
conn.Close();
}
return i;

}


#endregion








#region 執行查詢返回第一行,第一列---------------------------------




public static int ExcuteScalarSQL(string strSQL)
{
return ExcuteScalarSQL(strSQL, null);
}

public static int ExcuteScalarSQL(string strSQL, SqlParameter[] paras)
{
return ExcuteScalarSQL(strSQL, paras, CommandType.Text);
}
public static int ExcuteScalarProc(string strSQL, SqlParameter[] paras)
{
return ExcuteScalarSQL(strSQL, paras, CommandType.StoredProcedure);
}
/// <summary>
/// 執行SQL語句,返回第一行,第一列
/// </summary>
/// <param name="strSQL">要執行的SQL語句</param>
/// <param name="paras">參數列表,沒有參數填入null</param>
/// <returns>返回影響行數</returns>
public static int ExcuteScalarSQL(string strSQL, SqlParameter[] paras, CommandType cmdType)
{
int i = 0;
using (SqlConnection conn = new SqlConnection(strConn))
{
SqlCommand cmd = new SqlCommand(strSQL, conn);
cmd.CommandType = cmdType;
if (paras != null)
{
cmd.Parameters.AddRange(paras);
}
conn.Open();
i =Convert.ToInt32( cmd.ExecuteScalar());
conn.Close();
}
return i;

}


#endregion









#region 查詢獲取單個值------------------------------------




/// <summary>
/// 調用不帶參數的存儲過程獲取單個值
/// </summary>
/// <param name="ProcName"></param>
/// <returns></returns>
public static object GetObjectByProc(string ProcName)
{
return GetObjectByProc(ProcName, null);
}
/// <summary>
/// 調用帶參數的存儲過程獲取單個值
/// </summary>
/// <param name="ProcName"></param>
/// <param name="paras"></param>
/// <returns></returns>
public static object GetObjectByProc(string ProcName, SqlParameter[] paras)
{
return GetObject(ProcName, paras, CommandType.StoredProcedure);
}
/// <summary>
/// 根據sql語句獲取單個值
/// </summary>
/// <param name="strSQL"></param>
/// <returns></returns>
public static object GetObject(string strSQL)
{
return GetObject(strSQL,null);
}
/// <summary>
/// 根據sql語句 和 參數數組獲取單個值
/// </summary>
/// <param name="strSQL"></param>
/// <param name="paras"></param>
/// <returns></returns>
public static object GetObject(string strSQL, SqlParameter[] paras)
{
return GetObject(strSQL, paras, CommandType.Text);
}

/// <summary>
/// 執行SQL語句,返迴首行首列
/// </summary>
/// <param name="strSQL">要執行的SQL語句</param>
/// <param name="paras">參數列表,沒有參數填入null</param>
/// <returns>返回的首行首列</returns>
public static object GetObject(string strSQL, SqlParameter[] paras,CommandType cmdtype)
{
object o = null;
using (SqlConnection conn = new SqlConnection(strConn))
{
SqlCommand cmd = new SqlCommand(strSQL, conn);
cmd.CommandType = cmdtype;
if (paras != null)
{
cmd.Parameters.AddRange(paras);

}

conn.Open();
o = cmd.ExecuteScalar();
conn.Close();
}
return o;

}



#endregion





#region 查詢獲取DataReader------------------------------------




/// <summary>
/// 調用不帶參數的存儲過程,返回DataReader對象
/// </summary>
/// <param name="procName">存儲過程名稱</param>
/// <returns>DataReader對象</returns>
public static SqlDataReader GetReaderByProc(string procName)
{
return GetReaderByProc(procName, null);
}
/// <summary>
/// 調用帶有參數的存儲過程,返回DataReader對象
/// </summary>
/// <param name="procName">存儲過程名</param>
/// <param name="paras">參數數組</param>
/// <returns>DataReader對象</returns>
public static SqlDataReader GetReaderByProc(string procName, SqlParameter[] paras)
{
return GetReader(procName, paras, CommandType.StoredProcedure);
}
/// <summary>
/// 根據sql語句返回DataReader對象
/// </summary>
/// <param name="strSQL">sql語句</param>
/// <returns>DataReader對象</returns>
public static SqlDataReader GetReader(string strSQL)
{
return GetReader(strSQL, null);
}
/// <summary>
/// 根據sql語句和參數返回DataReader對象
/// </summary>
/// <param name="strSQL">sql語句</param>
/// <param name="paras">參數數組</param>
/// <returns>DataReader對象</returns>
public static SqlDataReader GetReader(string strSQL, SqlParameter[] paras)
{
return GetReader(strSQL, paras, CommandType.Text);
}
/// <summary>
/// 查詢SQL語句獲取DataReader
/// </summary>
/// <param name="strSQL">查詢的SQL語句</param>
/// <param name="paras">參數列表,沒有參數填入null</param>
/// <returns>查詢到的DataReader(關閉該對象的時候,自動關閉連接)</returns>
public static SqlDataReader GetReader(string strSQL, SqlParameter[] paras,CommandType cmdtype)
{
SqlDataReader sqldr = null;
SqlConnection conn = new SqlConnection(strConn);
SqlCommand cmd = new SqlCommand(strSQL, conn);
cmd.CommandType = cmdtype;
if (paras != null)
{
cmd.Parameters.AddRange(paras);
}
conn.Open();
//CommandBehavior.CloseConnection的作用是如果關聯的DataReader對象關閉,則連接自動關閉
sqldr = cmd.ExecuteReader(CommandBehavior.CloseConnection);
return sqldr;
}



#endregion




#region 批量插入數據---------------------------------------------




/// <summary>
/// 往資料庫中批量插入數據
/// </summary>
/// <param name="sourceDt">數據源表</param>
/// <param name="targetTable">伺服器上目標表</param>
public static void BulkToDB(DataTable sourceDt, string targetTable)
{
SqlConnection conn = new SqlConnection(strConn);
SqlBulkCopy bulkCopy = new SqlBulkCopy(conn); //用其它源的數據有效批量載入sql server表中
bulkCopy.DestinationTableName = targetTable; //伺服器上目標表的名稱
bulkCopy.BatchSize = sourceDt.Rows.Count; //每一批次中的行數

try
{
conn.Open();
if (sourceDt != null && sourceDt.Rows.Count != 0)
bulkCopy.WriteToServer(sourceDt); //將提供的數據源中的所有行複製到目標表中
}
catch (Exception ex)
{
throw ex;
}
finally
{
conn.Close();
if (bulkCopy != null)
bulkCopy.Close();
}

}

#endregion


}
}
複製代碼
您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 一、什麼是委托: 委托是定址方法的.NET版本,使用委托可以將方法作為參數進行傳遞。委托是一種特殊類型的對象,其特殊之處在於委托中包含的只是一個活多個方法的地址,而不是數據。 二、使用委托: 關鍵字:delegate 1.聲明: public delegate void DoNothing();// ...
  • 這稱不上一篇技術文。 這邊記錄解決一個問題的過程和感受。這種感覺每個搞IT的人或多或少都感受過,是程式人獨有的快樂之一。只是大部分人沒有將這種感覺記錄下來。但是當你記錄時,這種感覺也早已消失。 需求:通過程式抓取outlook中的尋呼欄位 當然這個需求被我簡化了,實際上這個欄位記錄的是員工的工號。之 ...
  • 一、 打開Visual Studio 2017(我使用的是2017) 新建一個mvc項目 命名為StudentEntity 二、1)建立完項目後在項目中右擊選擇新建項,找到ADO.NET實體數據模型 命名為StudentModel 2)然後選擇來自資料庫的EF設計器(如果你是vs低版本的話可能就只有 ...
  • 簡單闡述 在C 的WinForm裡面,原生控制項是沒有居中屬性的,故通過重寫OnResize(EventArgs e)方法,通過計算,重新定位控制項位置。 以Label控制項為例 (1)將label的AutoSize屬性設置為false;Dock屬性設置為fill;TextAlign屬性設置為Middle ...
  • 出於工作需要,需要製作一個嵌入在桌面應用中的C語言編輯器,經過一系列調研,目前ScintillaNET應該是最合適的了,開源、輕便、功能豐富,但是踩得坑也很多,接下麵一一說道。 目前ScintillaNET托管在https://github.com/jacobslusser/ScintillaNET ...
  • 之前面試有問道依賴註入,因為一直是做客戶端的發開發,沒有接觸這個,後邊工作接觸到了MEF,順便熟悉一下依賴註入 詳細的概念解釋就不講了,網上一大把,個人覺著依賴註入本質是為瞭解耦,方便擴展 依賴註入的方式:屬性註入和構造函數註入,還有介面註入的,看了下跟屬性註入差不多·就不展示了 上代碼: (DI ...
  • 封裝是面向對象的基礎和重要思想之一,今天具體的瞭解封裝這一特性後發現其實自己已經接觸過很多關於封裝的內容了。 一、什麼是封裝。 封裝的概念:將具體的實現細節裝到一個容器中,封閉或隱藏起來(使用訪問修飾符private來實現),防止容器外部直接訪問內部的實現細節或更改內部成員,僅對外公開對應的介面來訪 ...
  • 從序言中,大家應該對委托和事件的重要性有點瞭解了吧,雖然說我們現在還是能模糊,但是從我的大白話系列中,我會把這些概念說的通俗易懂的。首先,我們還是先說說委托吧,從字面上理解,只要是中國人應該都知道這個意思,除非委托2個中文字不認識,舉個例子,小明委托小張去買車票。 但是在我們的程式世界里,也是這麼的 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...