如何找出MSAccess数据库中某个字段的CHECK约束名称?
我正在实施一个用于更新客户站点上的 MSAccess 数据库架构的解决方案,并且我正在使用 DataWeigher 生成更新脚本。
我用 C# 编写的小型控制台应用程序执行生成的脚本。
现在我想更改字段的一些现有验证规则。
要更改现有的验证规则,我将使用以下命令:
ALTER TABLE myTable DROP CONSTRAINT <nameOfConstraint>
ALTER TABLE myTable ADD CONSTRAINT <nameOfConstraint> CHECK(myFiled<42)
原始验证规则是手动创建的(通过 MSAccess),我不知道 MSAccess 为该约束指定了什么名称>。
我如何找出应向 DDL 突击队提供的 nameOfConstraint?
I am implementing a solution for updating the schema of MSAccess databases on customer site and I am using DataWeigher to generate the update script.
My small console application wtitten in C# executes the generated script.
And now I want to change some existing validation rule of a field.
To change an existing validation rule I would use following commandos:
ALTER TABLE myTable DROP CONSTRAINT <nameOfConstraint>
ALTER TABLE myTable ADD CONSTRAINT <nameOfConstraint> CHECK(myFiled<42)
The original validation rule was created manually (via MSAccess) and I do not know what name was given to this constraint by MSAccess.
How could I find out what the nameOfConstraint should be provide to the DDL commando?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据这个示例代码,您可以使用
DataTable .Constraints[Index].ConstraintName
获取名称以及希望其他属性来标识要更改哪个约束。According to this sample code, you can use
DataTable.Constraints[Index].ConstraintName
to get the name(s) and hopefully other properties to identify which constraint is to be changed.