ASP.NET 連結 Access 資料庫路徑問題最終解決方案

來源:互聯網
上載者:User

當做小項目用 ASP.NET + Access 資料庫時,總是遇到資料庫路徑問題,本人以前的解決方案是每次訪問資料庫時,把連結字串以參數的形式傳到資料訪問層,實施起來相當麻煩,這次找到了一個比較好的方案,這是本人目前的最終解決方案(如題) ^_^
解決方案為:
在 Web.Config 中配置 Access 資料庫驅動和資料庫檔案名稱。
請看代碼
<appSettings>
<add key="DBDriver" value="Provider=Microsoft.Jet.OLEDB.4.0; Data Source ="/>
<add key="DBName" value="Company.mdb"/>
</appSettings>
在資料庫訪問層,如 OleDBHelper.cs 中獲得 Access 資料庫連結字串。
/**//// <summary>
/// 從Web.Config取得資料庫聯結字串
/// </summary>
//從設定檔中得到資料庫名稱
public static readonly string DBName = ConfigurationManager.AppSettings.Get("DBName").ToString();
//從設定檔中得到資料庫驅動
public static readonly string DBDriver = ConfigurationManager.AppSettings.Get("DBDriver").ToString();
//得到資料庫連接字串
private static string DBConnectionString = DBDriver + HttpContext.Current.Server.MapPath(HttpContext.Current.Request.ApplicationPath + "/App_Data/") + DBName;
//建立資料庫連接對象
private static OleDbConnection OleDbConn = new OleDbConnection(DBConnectionString);
這樣設定後,無論在任何子目錄,都能通過以上代碼正確的訪問資料庫。
相關文章

聯繫我們

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