是否可以以独立方式将一个 MDB 链接到另一个 MDB?
是否可以以独立方式将一个 MDB 链接到另一个 MDB?
IE。如果我在 db1.mdb
中有帐户表,在 db2.mdb
中有产品表,是否可以对这两个 MDB 进行编码,以便它们可以链接到无缝方式?
Is it possible to link one MDB to another in a standalone manner?
Ie. If I have the accounts table in db1.mdb
and the products table in db2.mdb
, can both these MDBs be coded so that they can link to each of the tables in a seamless manner?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,就这么做吧。您可以在 MS Access 中创建链接表,Jet 引擎不再关心数据驻留在哪个 MDB 文件中。
事实上,将数据数据库与代码数据库分开是一种很好的做法,因为您可以向客户发送更新的代码数据库,而无需更新数据数据库。
顺便提一句。我们完全停止在 MDB 中存储数据,因为它们往往会破坏规律。最好立即开始使用 Microsoft 桌面数据库引擎,并将代码放入 MDB 中。
Yes, just do it. You can create linked tables in MS Access, and the Jet engine does not care anymore in which MDB file the data resides.
In fact it is good practice to separate the data db from the code db, because you can send updated code dbs without the need to update the data db to your customers.
Btw. we stopped storing data in MDBs altogether, because they tend to break regulary. Better start using the Microsoft Desktop Database Engine immediatly, and just place the code in thr MDB.