打開“Microsoft SQL Server Management Studio”直接連接Windows用戶,然後在“安全性”中的“登錄”中點擊“新登錄”,即可相應添加“確定”。
然後在相應的“數據庫”中“保護”用戶,並添加您構建的用戶。
重點是檢查“服務器屬性”,在“安全”中選擇“SQL Server和Windows身份驗證模式”。系統會提示您重新啟動SQL Server,您可以停止並重新啟動它。
然後看C#連接SQL Server2005的代碼語句:
strcon = strcon+@ " Data Source = "+strcon[0];
strcon = strcon +","+strcon[2]+";";
strcon = strcon +"網絡庫= "+strcon[1]+";";
strcon = strcon +"初始目錄= "+strcon[3]+";";
strcon = strcon +"用戶ID = "+strcon[4]+";";
strcon = strcon+" Password = "+strcon[5]+";";
strcon = strcon+" Persist Security Info = True ";
Strcons[0]服務器名,壹般加上機器的IP。
Strcons[1]協議DBMSSOCN (tcp/ip協議)
Strcons[2]]端口號,壹般為1433。
Strcons[3]數據庫名稱
Strcons[4]用戶名
Strcons[5]密碼
還應該配置端口號:
控制面板中服務和應用程序中SQL Server配置管理中的SQL Server 2005網絡配置SQL。
默認情況下,Server2005的TCP/IP協議是禁用的。在其屬性中將端口號設置為1433,然後單擊“OK”啟動。