code
/*在開發過程中資料庫可能用的很多,可能即用sqlserver 又用 oracle 等等........,總結了幾次在網上看了很多資料寫了個覺得還可以用的,需要修改的地方很多希望各位大哥指教,小弟在這裡先謝了
*/namespace
connection
try}}}
catch
(exception exp)
finally}}
}/*列舉 */
namespace
connenum }
/*介面,在這裡簡單的寫了下三層模式沒有寫工廠模式,請見諒
*/namespace
connection}/*
bll
*/namespace
myenm
/*getconnection returns idbconnection
*/public
idbconnection getconnection(dbtypeconn conndbtype,
string
connstring)
return
idbconn;}/*
getdataadapter returns idbdataadapter 使用介面卡模式讀取資料
*/public
idbdataadapter getdataadapter(dbtypeconn conndbtype,
string
connstring,
string
sql)
return
idbadapter;}}
}
資料訪問通用類(C )
using system using system.collections.generic using system.linq using system.web using system.data using system.data.sqlclient using system.configurat...
c 通用資料庫訪問類
在應用程式的設計中,資料庫的訪問是非常重要的,我們通常需要將對資料庫的訪問集中起來,以保證良好的封裝性和可維護性。在.net中,資料庫的訪問,對於微軟自家的sqlserver和其他資料庫 支援oledb 採用不同的訪問方法,這些類分別分布於system.data.sqlclient和system.d...
通用資料庫訪問DLL實現
通用資料庫訪問模組 實現介面 通過范型類來做所有操作的物件,來對應任何表結構的資料。這種通用型別只能對單錶操作吧,不是很方便。包裝通用事務和通用資料庫鏈結物件,便於對不通資料庫相容 內建方法為泛型型別物件的,增刪改及查詢,加返回泛型集合物件 通用表物件對映模型 基類實現 新增更新字典,加入查詢表字段...