資料庫連接字串

來源:互聯網
上載者:User

1,Windows驗證               Common.ConnString = @"Initial Catalog=資料庫名;Data Source=電腦名或IP地址;Integrated Security=SSPI";

2, Sql混合驗證
Common.ConnString = @"server=電腦名或IP地址;database=資料庫名;uid=使用者名稱;password=密碼";

 

連接字串怎麼寫,都在 http://connectionstrings.com/ 總結了
連接字串跟資料庫類型有關的,你傳入了“資料庫類型”,就知道如何調用了。一般的做法是連接字串放web.config裡面。程式只需讀取即可
如放在appSetting裡面或者connectionStrings裡面 <appSettings> <add key="SQLServer" value="data source=.;integrated security=true;database=login"/> <add key="Oracle" value="xxxxx"/> <add key="Access" value="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=|DataDirectory|aspxWeb2.mdb"/></appSettings>
讀取 string con = System.Configuration.ConfigurationManager.AppSettings["SQLServer"].ToString();
string con = System.Configuration.ConfigurationManager.AppSettings["Access"].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.