WinForm應用程式(非Web) 如何連結資料庫

WinForm應用程式連結資料庫 & Web Form連接資料庫的不同

Web 用連接資料庫(ASP.NET)

 

通常會在Web.Config裡會有以下設定:


  
 

之後在ASP.cs裡取用Web.Config裡的資料連結字串,且命名空間加上using System.Data.SqlClient; 與 using System.Web.Configuration;

 

SqlConnection conn = new SqlConnection(WebConfigurationManager.ConnectionStrings["DBString1"].ConnectionString);

 

-------------------------------------------------------------------------------------------------

WinForm應用程式

有個跟Web.Config類似的設定,名為app.Config


        
    

 

設定好後,一樣在.cs檔就可以取用資料庫,且命名空間加上 using System.Configuration;

 SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["Database1ConnectionString"].ConnectionString);

 

 

參考連結:

http://www.dotblogs.com.tw/mis2000lab/archive/2009/07/15/db_connectionstring.aspx

http://www.dotblogs.com.tw/mis2000lab/archive/2011/09/05/adonet_web_windows_2011_datareader.aspx

這位作者的書還不錯喔 ^^