如何在DBF表上创建主键?
我正在使用 OLEDB 驱动程序 (Provider=Microsoft.Jet.OLEDB.4.0;Data Source={0};Extended Properties=dBase IV) 来处理 DBF 表。当我尝试在现有列上创建主键时遇到问题。我已经尝试了几种语法变体但没有成功。
使用 OLEDB 针对 DBF 表创建主键的正确语法是什么?
I am using the OLEDB driver (Provider=Microsoft.Jet.OLEDB.4.0;Data Source={0};Extended Properties=dBase IV) to work with a DBF table. I am running into an issue when I attempt to create a primary key on an existing column. I have been through several variations of syntax with no success.
What is the correct syntax for creating a primary key using OLEDB against a DBF table?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
当然,您必须确保索引尚不存在,并且列中的值当前不违反建议的主键等。
Try this:
Of course, you have to make sure the index doesn't already exist nor the values in the column do not currently violate the proposed primary key, etc.