程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> 其他數據庫知識 >> 更多數據庫知識 >> SQL Server 數據庫連接字符串的聲明

SQL Server 數據庫連接字符串的聲明

編輯:更多數據庫知識

   連接字符串中常用的聲明有:

  服務器聲明 Data Source、Server和Addr等。

  數據庫聲明 Initial Catalog和DataBase等。

  集成Windows賬號的安全性聲明 Integrated Security和Trusted_Connection等。

  使用數據庫賬號的安全性聲明 User ID和Password等。

  對於訪問數據庫的賬號來說,通常我們在一些參考資料上看到ADO.NET的字符串連接往往有如下寫法:

  string ConnStr = "server = localhost;

  user id = sa; password = xxx; database = northwind";

  對於集成Windows安全性的賬號來說,其連接字符串寫法一般如下:

  string ConnStr = "server = localhost;

  integrated security = sspi; database = northwind";

  或string ConnStr = "server = localhost;

  trusted_connection = yes; database = northwind";

  使用Windows集成的安全性驗證在訪問數據庫時具有很多優勢:安全性更高、訪問速度更快、減少重新設計安全架構的工作、可以硬編碼連接字符串等,還是很值得使用的。

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved