通过VB6代码更新access 2000数据库

发布于 2024-09-01 22:08:11 字数 184 浏览 5 评论 0原文

我有一个应用程序,它使用当前正在分发的 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 技术交流群。

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

发布评论

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

评论(2

温暖的光 2024-09-08 22:08:11

可以使用 VBScript、ADO 和 DDL 更新 Access 数据库。

strCon="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Example.mdb;" _
   & "Jet OLEDB:Database Password=pass;"

Set cn=CreateObject("ADODB.Connection")
cn.Open strCon

strSQL="ALTER TABLE Example ADD COLUMN Example Text (20)"
cn.Execute strSQL

更多连接字符串:www.connectionstrings.com

It is possible to update an Access database using VBScript, ADO and DDL.

strCon="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=Example.mdb;" _
   & "Jet OLEDB:Database Password=pass;"

Set cn=CreateObject("ADODB.Connection")
cn.Open strCon

strSQL="ALTER TABLE Example ADD COLUMN Example Text (20)"
cn.Execute strSQL

More connections strings: www.connectionstrings.com

dawn曙光 2024-09-08 22:08:11

我更喜欢使用 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.

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