作者:PeterXu 来源:Blog.CSDN Blog: http://blog.csdn.net/peterreg/
版权声明:原创作品,允许转载,转载时请务必以超链接形式标明文章原始出版、作者信息和本声明。否则将追究法律责任。本文地址:http://blog.csdn.net/peterreg/archive/2008/04/02/2242981.aspx
首先定义数据库操作的标准接口IDBAccess,定义接口的基本功能;
通过基本的接口设置,完成数据访问的统一抽象。
public
interface
IDBAccess
... {
void Init(string strServer, string strDataBase, string strUser, string strPwd);
void Open();
void Close();
bool TestConn();
int RunNoQuery(string strCmd);
DataTable RunQuery(string strCmd);
DBType DBType ...{ get;}
int GetFiledMax(string strTable, string strField);
DataTable Tables ...{ get; }
DataTable GetColumns();
DataTable GetColumns(string strTable);
}
... {
void Init(string strServer, string strDataBase, string strUser, string strPwd);
void Open();
void Close();
bool TestConn();
int RunNoQuery(string strCmd);
DataTable RunQuery(string strCmd);
DBType DBType ...{ get;}
int GetFiledMax(string strTable, string strField);
DataTable Tables ...{ get; }
DataTable GetColumns();
DataTable GetColumns(string strTable);
}