SQL Server 資料庫連接字串的聲明

來源:互聯網
上載者:User
連接字串中常用的聲明有:
伺服器聲明 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整合的安全性驗證在訪問資料庫時具有很多優勢:安全性更高、訪問速度更快、減少重新設計安全架構的工作、可以寫入程式碼連接字串等,還是很值得使用的。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.