通过VB6代码更新access 2000数据库
我有一个应用程序,它使用当前正在分发的 access 2000 数据库。
我需要使用客户计算机上的附加字段更新记录集之一。
我的数据控件工作正常,因为我将它们设置为以 access 2000 格式连接。但是,当我尝试用代码打开数据库时,出现无法识别的数据格式错误。
替换或添加到其计算机上的数据库的最佳方法是什么?
I have an application that uses an access 2000 database currently in distribution.
I need to update one of the recordsets with additional fields on my customer's computers.
My data controls work fine as I have them set to connect in access 2000 format. But, when I try to open the database in code, I get an unrecognized data format error.
What is the best way to replace or add to the database on their machines?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可以使用 VBScript、ADO 和 DDL 更新 Access 数据库。
更多连接字符串:www.connectionstrings.com
It is possible to update an Access database using VBScript, ADO and DDL.
More connections strings: www.connectionstrings.com
我更喜欢使用 DAO 集合来更新 BE 数据库模式,因为它可以让您更好地控制自己可以做什么。例如,您可以轻松删除或创建表、记录、索引和关系。请参阅我网站上的 TempTables.MDB 页面,其中说明了如何使用临时表您的应用程序中包含 MDB,并提供示例代码来帮助您入门。
I much prefer using DAO collections to updating BE database schemas as it gives you much more control over what you can do. For example you can easily delete or create tables, records, indexes and relationships. See the TempTables.MDB page at my website which illustrates how to use a temporary MDB in your app and has sample code to get you started.