用sqlconnection連線sql server資料庫
//引用
using dystem.data.sqlclient;
string constring="data source=ip位址;initial catalog=資料庫名稱;user id=使用者名稱;password=密碼;persist security info=true";
//string constring="datasource=ip位址;database=資料庫名稱;user id=使用者名稱;password=密碼";
sqlconnection myconn=new sqlconnection(constring);
#regsion取資料集
string strsql="select * from 表名";
myconn.open();
sqldataadapter dap=new sqldataadapter(strsql,myconn);
//返回dataset
dataset ds=new dataset();
dap.fill(ds);
//返回datatable
//datatable dt=new datatable();
#endregsion
//#regsion取單一值
//string strsql="select 某欄位單一值 from table";
//sqlcommand com=new sqlcommond(strsql,myconn);
//object objfieldvalue=com.executescalar();
//string strfieldvalue=objfieldvalue.tostring();
//#endregsion
myconn.dispose();
myconn.close();
C 連線資料庫
using system using system.data using system.data.sqlclient using system.windows.forms namespace testc public void open catch exception e public void c...
c 連線資料庫
根據查詢結果儲存在資料庫伺服器端還是本地客戶端,可分兩種連線資料庫的方式 那麼這兩種方式的好壞 查詢結果儲存在資料庫伺服器 之所以要儲存在資料庫伺服器端,是因為一旦查詢結果資料量大,如果儲存在本地會占用大量的記憶體,所以該方式的優點是不佔記憶體。但對 於 資料量小情況下,還要時刻與資料庫保持連線,一...
c 連線資料庫
using system using system.collections.generic using system.text using system.data using system.data.sqlclient namespace dal catch sqlexception ex fina...