c#連線資料庫ms sql server
方法一:
可以利用sqlconnectionstringbuilder,這樣不必去記住名稱。
using system.data.sql;
using system.data.sqlclient;
sqlconnectionstringbuilder scsb = new sqlconnectionstringbuilder();
scsb.datasource = @"(local)\sqlexpress";
= @"192.168.2.200";//如果連線專用sql伺服器,則輸入ip位址
scsb.integratedsecurity = false;
scsb.initialcatalog = "erp"; //資料庫名
scsb.userid = "sa";
scsb.password = "aaz1397";
sqlconnection myconnection = new sqlconnection(scsb.connectionstring);
方法二:
using system.data.sql;
using system.data.sqlclient;
datatable dt = new datatable();
string con = "server = (local)\\sqlexpress;database = erp;user = sa;pwd = aaz1397;initial catalog=pcmis;";//本地資料庫伺服器
string str1 = string.empty;
str1 = string.format("select [userid] as 帳號 ,[processing] as 製程 from [dbo].[authority_mu] where 1=2");
sqlconnection conn = new sqlconnection(con);
sqldataadapter adapter = new sqldataadapter();
conn.open();
adapter.selectcommand = new sqlcommand(str1, conn);
string con = "user=sa;pwd=aaz1397;database=erp;server=(local)\\sqlexpress";(連線sql express,非server版,並且使用雙反斜線\\)
string con = "user=sa;pwd=aaz1397;database=erp;server=.";(連線本地sql server版,用.即可)
string con = "user=sa;pwd=aaz1397;database=erp;server=192.168.2.200";(連線公司專用sql server伺服器,用ip位址)
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...