using system;
using system.collections.generic;
using system.text;
using system.data;
using system.data.sqlclient;
namespace dal
catch (sqlexception ex)
finally}}
///
/// 登陸儲存過程
///
/// sql語句或者儲存過程名
/// 引數陣列
/// 命令型別
///
/// 1、輸出引數值
/// 2、返回值
///
public int user_login(string sql, sqlparameter paras, commandtype cmdtype)
//執行
comm.executenonquery();
int arr = new int[2];
//獲取輸出引數和返回值
foreach (sqlparameter sp in paras)
}else if (sp.direction == parameterdirection.returnvalue)
}//返回陣列
return arr;
}catch (sqlexception ex)
finally}}
///
/// 返回乙個table資料集
///
/// sql查詢語句
/// 返回table資料集
public datatable gettable(string sql)
catch (sqlexception ex)
finally}}
}}
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 連線資料庫
用sqlconnection連線sql server資料庫 引用 using dystem.data.sqlclient string constring data source ip位址 initial catalog 資料庫名稱 user id 使用者名稱 password 密碼 persist...