将数据库连接保存在xml文件中好吗

发布于 2024-10-20 22:31:10 字数 229 浏览 1 评论 0原文

我的一般情况是在客户的计算机上部署 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

桃酥萝莉 2024-10-27 22:31:10

如果您使用的是 2.0 或更高版本,则可以使用单独的文件来存储常规设置,并将它们与主 .config 文件中的内容分开,例如:

<appSettings file="myotherfile.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:

<appSettings file="myotherfile.config" />

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文