如何在 app.config 文件中设置连接字符串值?
我的示例 app.config 文件是
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<connectionStrings>
<add name="DBconn" connectionString="driver={MySQL ODBC 5.1 Driver};server=10.78.17.229;database=grocery;uid=root;pwd=admin;"/>
</connectionStrings>
</configuration>
我想从 C# 代码设置连接字符串值。 我无法更改文件内容。请帮我。
My sample app.config file is
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<connectionStrings>
<add name="DBconn" connectionString="driver={MySQL ODBC 5.1 Driver};server=10.78.17.229;database=grocery;uid=root;pwd=admin;"/>
</connectionStrings>
</configuration>
I want to set connectionstring value from the c# code.
I am not able to change the file content. Please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
App.cofig 代码
C# 代码
App.cofig Code
C# Code
不完全确定这是您应该采取的方法,但无论如何这可能对您有用?
Not entirely sure this is the approach you should be taking but anyway this might work for you?