剛學c#自己寫了乙個資料庫操作的通用類,以做復用。寫得不好,不斷更新中。。。
1:using system;
2:using system.data;
3:using system.data.sqlclient;
4:
5:
6:namespace qxtintface
7:
18:catch(exception ex)
19:
23: }
24:public
static sqlconnection getsqlconnection(string sconstr)
25:
31:catch (exception ex)
32:
36: }
37:
38:// 返回指定資料庫的資料集
39:public
static dataset getexequery(string selectcmd)
40:
49:
50:// 執行非查詢命令
51:public
static
int exenonequery(string scmd)
52:
60:
61://返回資料查詢的第乙個字段值(查詢指定表的資料行數)
62:public
static
int exescalar(string selecttablename)
63:
70: }
71: }
c 操作mysql通用類 C 資料庫操作通用類
usingsystem usingsystem.collections.generic usingsystem.linq usingsystem.text usingsystem.data.common usingsystem.data usingsystem.reflection namespac...
C 通用資料庫操作類
使用ado.net的方式運算元據庫時,對於經常需要操作不同資料庫的同學,需要對不同的資料庫翻來覆去地寫操作類。對ado.net,運算元據庫需要有幾個核心的東西 以mysql為例 負責mysql的連線,在操作mysql前,需要先獲得連線。負責具體命令的類,具體需要執行的sql的語句需要放到它的comm...
C SQL資料庫操作通用類
c sql資料庫操作通用類 using system using system.configuration using system.data using system.data.sqlclient using system.collections namespace framework.datab...