使用 TDatabase 和本地悖论表将 Delphi 示例转换为服务器存储
我正在查看 Developer Express Quantum Grid 示例“IssueList”,这是一个有用的错误报告和跟踪应用程序,几乎可以立即使用。它使用带有多个悖论 (.db) 表的 TDatabase 组件。
重新调整 TDatabase 设置以使用共享计算机上的数据库以便我们中的几个人可以通过网络一起访问它是否简单?如果可以,请问需要什么步骤?
I am looking at the Developer Express Quantum Grid example 'IssueList' which is a useful bug reporting and tracking application that's almost ready to go out of the box. It uses a TDatabase component with several paradox (.db) tables.
Is it simple to rejig the TDatabase settings to use a database on a shared machine so that several of us can access it together across the network? If so, what would be the steps needed please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此 TI 描述了在网络上共享 Paradox 数据库所涉及的设置。
在您的配置中,您需要正确设置
工作目录
和私有目录
。通常,不使用别名会更容易,而是执行
TDatabase.Parameters
属性和 TSession 中的所有设置。所有用户的工作目录必须是相同的路径(共享名、驱动器号)。
所有用户的私有目录必须不同。
以下两个链接更详细地解释了您需要的一些缺陷:
--jeroen
This TI describes the settings involved for sharing Paradox databases on a network.
In your configuration you need to set the
working directory
andprivate directory
correctly.Often it is easier not to use aliases for this, but perform all the settings in your
TDatabase.Parameters
property and your TSession.The working directory must be the same path (sharename, drive letter) for all users.
The private directory must be different for all users.
Here are two links that explain some of the defails you need in more detail:
--jeroen