資源簡介
實現(xiàn)c#各類數(shù)據(jù)庫連接
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.Linq;
using?System.Text;
using?System.Data;
using?System.Collections;
using?System.Reflection;
namespace?Controller.Database.Factory
{
????public?abstract?class?baselink?:?DBHelper
????{
????????abstract?protected?IDbConnection?CreateDbConnection();
????????abstract?protected?IDbCommand?CreateDbCommand();
????????abstract?protected?IDbCommand?CreateDbCommand(string?StrText?IDbConnection?conn);
????????abstract?protected?IDbDataAdapter?CreateDbDataAdapter(IDbCommand?cmd);
????????abstract?protected?List?CreateDbParamter();
????????abstract?protected?IDbDataParameter[]?CreateDbParamter(int?count);
????????abstract?protected?IDbDataParameter?CreateDbParamter(List?paramList?int?i?L
評論
共有 條評論