如何找出MSAccess数据库中某个字段的CHECK约束名称?

发布于 2024-11-06 00:47:23 字数 459 浏览 0 评论 0原文

我正在实施一个用于更新客户站点上的 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 技术交流群。

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

发布评论

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

评论(1

千柳 2024-11-13 00:47:23

根据这个示例代码,您可以使用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.

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