2009-05-22 67 views
0

我正在使用MS Access数据库并尝试从C#2.0获取完整数据。 如何使用ADOX获取constriant名称(例如:Primarykey的名称,而不是主键的字段名称)。如何获得约束的名称?

在此先感谢 马杜

回答

0

来源:How To Use ADOX to Determine If a Primary Key Exists on a Table

SQL = "CREATE TABLE PKTEST1 (f1 INT PRIMARY KEY, f2 INT)" 
cn.Execute SQL 

Set cat.ActiveConnection = cn 

'Check all indexes on the table for a primary key' 
For Each idx In cat.Tables("PKTEST1").Indexes 
     If idx.PrimaryKey = True Then 
     Debug.Print "INDEX NAME: " & idx.Name 

     'Show all columns that make up the index' 
     Debug.Print "consists of the following columns:" 
     For i = 0 To idx.Columns.Count - 1 
      Debug.Print idx.Columns(i).Name 
     Next 

    End If 

Next 
+0

谢谢Remou。那是行得通的。你节省了很多我的时间。 – 2009-05-22 20:54:01

相关问题