app.config数据库路径问题
生活随笔
收集整理的這篇文章主要介紹了
app.config数据库路径问题
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
最近做一個小東西,用到了subsonic,因為用的是sqlite,數據庫的路徑問題又被提了上來。在connectionStrings里面只能指定絕對路徑。對于sqlite,access這樣的數據庫來說,卻需要使用到相對路徑,否則發布后就會出問題。自己了解的一些解決方案有:
對asp.net,數據庫可以放在app_data里面,在web.config里面使用|DataDirectory|來指定路徑。
對winform,可以制作安裝程序,在安裝時生成connectionStrings。因為程序并不大,所以不想制作安裝程序。因為決定在程序啟動時修改connectionStrings。
?
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); ? #region Update //Update the connection config.ConnectionStrings.ConnectionStrings["Northwind"].ConnectionString = "Data Source=" + Application.StartupPath + @"\Northwind.sl3"; #endregion ? ? #region Add Create a connection string element and save it to the configuration file. ? Clear the connection //config.ConnectionStrings.ConnectionStrings.Clear(); //string csName = "Northwind"; ? Create a connection string element. //ConnectionStringSettings csSettings = // new ConnectionStringSettings(csName, // "Data Source=" + Application.StartupPath + @"\Northwind.sl3"); ? Get the connection strings section. //ConnectionStringsSection csSection = // config.ConnectionStrings; ? Add the new element. //csSection.ConnectionStrings.Add(csSettings); #endregion ? #region Save // Save the configuration file. config.Save(ConfigurationSaveMode.Modified); //Refresh ,this is very important. ConfigurationManager.RefreshSection("connectionStrings"); #endregion轉載于:https://www.cnblogs.com/icyflash/articles/1362229.html
總結
以上是生活随笔為你收集整理的app.config数据库路径问题的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: GitHub客户端的使用方法
- 下一篇: [开发技巧3]不显示报表直接打印