遍历 VB.Net 中 App.Config 文件中的连接字符串
我正在尝试使用 VB.net 迭代 App.Config 中的所有连接字符串。
我想: 1. 获取所有连接字符串的计数 2. 将它们全部放入列表框中。
我尝试过使用 System.Configuration.ConfigurationSettings 但不确定如何获取连接字符串的集合/列表。
该应用程序是 WinForms VB.net .net 4.0 应用程序。
I am trying to iterate through all the connection strings in App.Config using VB.net.
I would like to:
1. Get a count of all the connection strings
2. Put them all into a listbox.
I have tried using System.Configuration.ConfigurationSettings but am unsure exactly how to get the collection/listof connection strings.
The application is a WinForms VB.net .net 4.0 app.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该有效:
注意:如果您的 app.config 中没有声明,您可能还会获得 LocalSqlServer,因为默认情况下它是在 Machine.config 中定义的。
This should work:
Note: If you haven't got a statement in your app.config, you'll probably also get LocalSqlServer, as that's by default defined in Machine.config.