SqlServer連接字串相關記錄

來源:互聯網
上載者:User

一般我們會在Web.config檔案配置相關的連接字串,這裡記錄下相關寫法,方便以後使用。

1.常用的<connectionStrings>節點

a:Sql server 身分識別驗證連接字串

View Code

1 <connectionStrings>
2 <add name="ConnectionStringName" connectionString="server=.;database=資料庫名;uid=使用者名稱;pwd=密碼;"
3 providerName="System.Data.SqlClient"></add>
4 </connectionStrings>

b.Windows 身分識別驗證連接字串

View Code

1   <connectionStrings>
2 <add name="ConnectionStringName" connectionString="Data Source=伺服器名;Initial Catalog=資料庫名;Integrated Security=SSPI; "
3 providerName="System.Data.SqlClient"></add>
4 </connectionStrings>

另外用<connectionStrings configSource="Configration\ConnectionString.config"/>,可以指定在外部檔案定義。

其中代碼:參照以上。

取connectionString的方法:System.Configuration.ConfigurationManager.ConnectionStrings["ConnectionStringName"].ConnectionString;

2.在<appSettings>節點配置(windows驗證寫法參照1.b)

View Code

1 <appSettings>
2 <add key="ConnectionStringName" value="server=.;database=資料庫名;uid=使用者名稱;pwd=密碼;"/>
3 </appSettings>

取connectionString的方法:System.Configuration.ConfigurationManager.AppSettings["ConnectionStringName"].ToString();

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.