Sql Server資料庫幫助類

2021-06-01 00:52:23 字數 1251 閱讀 1553

using system;

using system.collections.generic;

using system.linq;

using system.web;

using system.data.sqlclient;

using system.data;

using system.configuration;

///

///sqlhelper 的摘要說明

///

public class sqlhelper

///

/// 獲取資料庫連線字串

///

public static readonly string cnnstring = configurationmanager.connectionstrings["cnnstring"].connectionstring;

///

/// 獲取結果集的第一行第一列的結果

///

/// 要執行的檢索語句

/// 檢索語句中的引數列表

///

public static object executescalar(string sqltext,params sqlparameter paramss)}}

///

/// 填充command物件的引數列表

///

/// 引數列表

/// command物件

private static void fillparameter(sqlparameter paramss, sqlcommand sqlcmm)

}///

/// 獲取檢索結果集,返回datatable

///

/// 要檢索的語句

/// 檢索語句中的引數列表

///

public static datatable executetable(string sqltext,params sqlparameter paramss)}}

}///

/// 執行對資料庫的增、刪、改操作,並返回資料庫中受影響的行數

///

/// 要執行的insert、updata、delete語句

/// 要執行的語句中的引數列表

///

public static int executenonquery(string sqltext,params sqlparameter paramss)}}

}

Sql Server 資料庫幫助類

注 資料庫操作幫助封裝類,簡單易用,減少 冗餘 資料庫鏈結 也可配置在web.config 檔案中 public static readonly string connectionstring server 資料庫鏈結 uid 賬號 pwd 密碼 database 資料庫名 執行乙個不需要返回值的s...

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...