当前位置 : 主页 > 编程语言 > c语言 >

c#连接字符串和连接app.config

来源:互联网 收集:自由互联 发布时间:2021-06-25
我有以下连接字符串,我通过它连接到位于我的应用程序的根文件夹内的子文件夹中的Access数据库(.mdb): OleDbConnection con = new OledbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + System.App
我有以下连接字符串,我通过它连接到位于我的应用程序的根文件夹内的子文件夹中的Access数据库(.mdb):

OleDbConnection con = new OledbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=" + System.AppDomain.CurrentDomain.BaseDirectory() + "Data\rctts.mdb;Jet OLEDB:Database Password=mypassword;")

我的问题是,如何将连接字符串放在app.config文件中?一般来说,我使用:

<connectionStrings>
    <add name="Test" connectionString="Data Source=.;Initial Catalog=OmidPayamak;Integrated Security=True" providerName="System.Data.SqlClient" />
</connectionStrings>

我面临的问题是,在我的连接字符串中,我正在进行一些连接,并且还使用System.AppDomain.CurrentDomain.BaseDirectory()来设置数据源…
我如何在app.config中进行相同的连接?有可能这样做吗?

您可以尝试以下方法:

connectionString="Data Source=|DataDirectory|\rctts.mdb;Initial Catalog=OmidPayamak;Integrated Security=True"

然后尝试将DataDirectory的值设置如下:

var currentDomain = AppDomain.CurrentDomain;
var basePath = currentDomain.BaseDirectory;
currentDomain.SetData("DataDirectory", basePath+"\Data");

在您的应用程序的相应启动文件中.

网友评论