Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的应用程序中,我有一个包含客户列表的访问数据库,该数据库被导入到我的项目中。组合框数据源设置为显示所有客户。
我还创建了一个表单,以便用户可以更改某些文件的某些设置和位置。为此,我使用this.properties.settings.KlantenDB()创建的字符串并将路径保存到客户数据库。
this.properties.settings.KlantenDB()
如何更改当前的 Access 数据库连接字符串,使其使用 KlantenDB 路径?
称呼
AppDomain.CurrentDomain.SetData("DataDirectory", path);
并提供数据文件的完整路径。
应该提供完整的KlantenConnectionString连接字符串。连接字符串的那|DataDirectory|部分将替换为您使用上述调用设置的值SetData。
KlantenConnectionString
|DataDirectory|
SetData
在您的情况下,以下调用应该有效
AppDomain.CurrentDomain.SetData("DataDirectory", "C:");