Sql Server 資料庫幫助類

2021-10-12 02:41:36 字數 1926 閱讀 1955

注: 資料庫操作幫助封裝類,簡單易用,減少**冗餘

//資料庫鏈結(也可配置在web.config 檔案中)

public static readonly string connectionstring =

"server=資料庫鏈結;uid=賬號;pwd=密碼;database=資料庫名"

;///

///執行乙個不需要返回值的sqlcommand命令,通過指定專用的連線字串。

/// 使用引數陣列形式提供引數列表

///

/// 乙個有效的資料庫連線字串

/// sqlcommand命令型別 (儲存過程, t-sql語句, 等等。)

/// 儲存過程的名字或者 t-sql 語句

/// 以陣列形式提供sqlcommand命令中用到的引數列表

/// 返回乙個數值表示此sqlcommand命令執行後影響的行數

public static

intexectenonquery

(string connectionstring, commandtype cmdtype, string cmdtext, params sqlparameter[

] commandparameters)

}///

///執行乙個不需要返回值的sqlcommand命令,通過指定專用的連線字串。

/// 使用引數陣列形式提供引數列表

///

/// sqlcommand命令型別 (儲存過程, t-sql語句, 等等。)

/// 儲存過程的名字或者 t-sql 語句

/// 以陣列形式提供sqlcommand命令中用到的引數列表

/// 返回乙個數值表示此sqlcommand命令執行後影響的行數

public static

intexectenonquery

(commandtype cmdtype, string cmdtext, params sqlparameter[

] commandparameters)

///

///儲存過程專用

///

/// 儲存過程的名字

/// 以陣列形式提供sqlcommand命令中用到的引數列表

/// 返回乙個數值表示此sqlcommand命令執行後影響的行數

public static

intexectenonqueryproducts

(string cmdtext, params sqlparameter[

] commandparameters)

///

///sql語句專用

///

/// t_sql語句

/// 以陣列形式提供sqlcommand命令中用到的引數列表

/// 返回乙個數值表示此sqlcommand命令執行後影響的行數

public static

intexectenonquerytext

(string cmdtext, params sqlparameter[

] commandparameters)

///

/// 呼叫儲存過程,以及輸出引數

///

/// 儲存過程名

/// 輸出引數,錯誤**

/// 輸出引數,錯誤資訊

/// 引數

///

public static

intexecutenonqueryoutput

(string sqlpronmae, out int error, out string msg, params sqlparameter[

] commandparameters)

catch (system.exception ex)

}return result;

}

Sql Server資料庫幫助類

using system using system.collections.generic using system.linq using system.web using system.data.sqlclient using system.data using system.configurat...

Sql Server 資料庫幫助類

using system using system.text using system.data using system.data.common namespace data.core 關聯式資料庫連線字串 public static string connectionstring if debu...

資料庫幫助類

新建乙個類庫,專門來處理資料。我覺得這個和ef的思想是差不多的,等有時間我好好研究一下ef,以後就不再用自己寫sql了 public class sqlhelper string sql select from table sqlcommand com new sqlcommand sql,conn...