改進的sqlhelper學習日誌

2022-04-30 23:00:31 字數 1119 閱讀 5290

下面就是詳細的sqlhelper的**了

using

system;

using

system.collections.generic;

using

system.linq;

using

system.text;

using

system.data.sqlclient;

using

system.configuration;

using

system.data;

namespace

hr_dal

#region 共有方法

//////方法:例項化連線物件

/// private

static

void

con()

//////

方法:開啟連線,例項化命令物件

/// ///

///private

static sqlcommand extcommand(string

sql)

//////

方法:關閉連線,釋放資源

/// private

static

void

closeconn()}}

#endregion

//////

方法:得到執行結果的首行首列

/// ///

///public

static

string getone(string

sql)

//////

方法:用sqldataadapter得到乙個表

/// ///

///public

static datatable gettable(string

sql)

//////

方法:根據條件返回乙個資料流

/// ///

///public

static sqldatareader getreader(string

sql)

}}

改進的sqlhelper學習日誌

下面就是詳細的sqlhelper的 了 using system using system.collections.generic using system.linq using system.text using system.data.sqlclient using system.configu...

學習筆記(設計實現SqlHelper)

sqlhelper是乙個類,在這個類當中可以宣告定義許多方法,如獲取sql命名 查詢標量 寫入操作等,sqlhelper可以用於簡化重複的去寫那些資料庫連線 dbconnection dbcommand,dbdatareader等等。sqlhelper 封裝過後通常是只需要給方法傳入一些引數如資料庫...

自己寫的SQLHelper

using system using system.collections.generic using system.text using system.data.sqlclient using system.configuration using system.data namespace dal...