将数据库连接保存在xml文件中好吗
我的一般情况是在客户的计算机上部署 vb.net 数据库应用程序。
考虑到未来更改数据库连接设置的问题,我计划将其存储在应用程序目录中的普通 xml 文件中,以便无论安装在何处,为了进行数据库配置,我只需要更改该文件即可我的程序运行顺利。
那么,这是将数据库连接设置存储到应用程序目录中的 xml 配置文件的想法还是有其他更好的想法?
我正在计划将其用于 vb.net winforms 应用程序
I am on a general scenario of deploying my vb.net database application on my client's computer.
Thinking of future problem of changing the database connection setting, i am planning to store it in a normal xml file in the app directory so that where ever it is installed, in order to make database configuration i only need to make change to that file and my program runs smoothly.
So is this idea of storing database connection setting to xml config file in app directory or is there any other better idea?
I am planning it for vb.net winforms applications
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 2.0 或更高版本,则可以使用单独的文件来存储常规设置,并将它们与主 .config 文件中的内容分开,例如:
然后您可以只更新该文件。
有关详细信息,请参阅此。
请注意,在 ASP.NET 下,对于 web.config 文件,对 appSettings 文件的更改不会触发整个 web.config 的重新加载。
If you're using 2.0 or later, you can use a separate file to store general settings and separate them from what's on the main .config file, like:
You can then update just that one file.
See this for more information.
Note that under ASP.NET, for web.config files, a change to the appSettings file does not trigger a reload of the whole web.config.