2017年6月12日 星期一

web.config中資料庫連線



連結資料庫的認證有其二包含SQL認證及WINDOWS認證,雖說只要拉connection程式會自動產生連線語法,但還是要了解連線語法要怎麼寫。

SQL認證的寫法
 <add name="superConnectionString" connectionString="Data Source=.;Initial Catalog=super;Persist Security Info=True;User ID=sa;Password=123"providerName="System.Data.SqlClient" />

WINDOWS認證的寫法
<add name="superConnectionString2" connectionString="Data Source=.;Initial Catalog=super;Integrated Security=True" providerName="System.Data.SqlClient" />


說明:
Data Source:伺服器
Catalog:資料庫名稱
Persist Security Info=True :將密碼儲存於記憶體中,供後續程式使用
ProviderName:引用SQL SERVER資料來源物件
Integrated Security=True:採用windows身份驗證模式


相關資料:

沒有留言:

張貼留言