0
MS-Access에서 계단식 업데이트 및 삭제와 같은 참조 무결성 규칙과 DDL을 사용하여 참조 무결성 규칙을 알고 있습니다.MS-Access 데이터베이스에서 계단식 업데이트/참조 무결성 규칙을 나열 하시겠습니까?
그러나 이미 테이블을 만든 후에 어떻게 다시 나열 할 수 있습니까?
MS-Access에서 계단식 업데이트 및 삭제와 같은 참조 무결성 규칙과 DDL을 사용하여 참조 무결성 규칙을 알고 있습니다.MS-Access 데이터베이스에서 계단식 업데이트/참조 무결성 규칙을 나열 하시겠습니까?
그러나 이미 테이블을 만든 후에 어떻게 다시 나열 할 수 있습니까?
VBA에서는 TableDefs 및 관계 컬렉션을 사용하여 테이블 및 관계 속성을 표시 할 수 있습니다. ADO 스키마를 사용하여 정보를 얻을 수도 있습니다. 특히
, 당신은 관계의 속성을 참조 할 것 :
Name Value Description
dbRelationDeleteCascade 4096 Deletions cascade
dbRelationDontEnforce 2 Relationship not enforced (no referential integrity)
dbRelationInherited 4 Relationship exists in the database containing the two linked tables
dbRelationLeft 16777216 Microsoft Access only. In Design view, display a LEFT JOIN as the default join type.
dbRelationRight 33554432 Microsoft Access only. In Design view, display a RIGHT JOIN as the default join type.
dbRelationUnique 1 One-to-one relationship
dbRelationUpdateCascade 256 Updates cascade
http://msdn.microsoft.com/en-us/library/bb225809.aspx
Dim rel As Relation
Dim tdf As TableDef
For Each rel In CurrentDb.Relations
Debug.Print rel.Attributes
Next
4352 = dbRelationUpdateCascade + dbRelationDeleteCascade