.MDB 文件的路径?

发布于 2024-10-19 08:12:18 字数 182 浏览 2 评论 0原文

我有一个位于网络共享上的 .MDB 数据库文件。

我在网络上的多台计算机上安装了一个应用程序。此应用程序访问 .MDB 数据库。存储 .MDB 文件路径的最佳方式是什么?也许在注册表中,或者在 .INI 文件中,或者在环境变量中?

I have an .MDB database file located on a network share.

I have an application installed on several machines on the network. This application accesses the .MDB database. What is the best way to store the path of the .MDB file? In the registry perhaps, or in an .INI file, or an environment variable?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

国际总奸 2024-10-26 08:12:18
  • 注册表:可能,但编辑/部署
  • INI 不太容易:我更喜欢这个。易于编辑,易于部署
  • 环境变量:太复杂,以上方法更好

另一种方式:作为应用程序的命令行参数。

  • Registry: Possible, but not so easy to edit/deploy
  • INI: I would prefer this. Easy to edit, easy to deploy
  • Environment Variable: Too complicated, above methods are better

Another way: as a command line parameter of your application.

忘羡 2024-10-26 08:12:18

强烈不鼓励使用注册表或环境变量。

这就是 INI 文件旨在提供的简单配置信息。除非您正在编写 .NET 应用程序,在这种情况下应用程序设置可能是更好的选择。

I would strongly discourage the use of either the Registry or an environment variable.

This is the kind of simple configuration information that INI files were designed to provide. Unless you're writing a .NET application, in which case Application Settings are probably a better bet.

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