.MDB 文件的路径?
我有一个位于网络共享上的 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
另一种方式:作为应用程序的命令行参数。
Another way: as a command line parameter of your application.
我强烈不鼓励使用注册表或环境变量。
这就是 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.