设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

返回列表 发新帖
查看: 653|回复: 0
打印 上一主题 下一主题

[其它] [求助]怎样获取指定表中所有的主键名?

[复制链接]
跳转到指定楼层
1#
发表于 2004-4-16 17:59:00 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
Sub testKey()
On Error GoTo err_this
    Dim adoxcat As New ADOX.Catalog
    Dim adoxtbl As New ADOX.Table
    Dim adoxkey As New ADOX.Key
    Dim intKeys As Integer
    Dim intKey As Integer
   
    strTblName = "L_CustVirtualStoreDetail"
    adoxcat.ActiveConnection = CurrentProject.Connection
   
    Set adoxtbl = adoxcat.Tables(strTblName)
    Debug.Print adoxcat.Tables(strTblName).name
'    Set adoxkey = adoxtbl.Keys
   

'    For Each adoxkey In adoxtbl.Keys
        intKeys = adoxtbl.Keys.Count - 1
        For intKey = 0 To intKeys
            Debug.Print adoxtbl.Keys.Item(intKey).name
        Next intKey
'        Debug.Print adoxkey.Columns
        Debug.Print adoxkey.name, adoxkey.Type
        
'    Next
   
    Set adoxkey = Nothing
    Set adoxtbl = Nothing
    Set adoxcat = Nothing
exit_sub:
    Exit Sub
err_this:
    MsgBox Err.Description, vbOKOnly + vbCritical, Err.Number
    Resume exit_sub
End Sub
但是我现在得到的并不是Key所在列的名字?问怎么得到?谢!
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 订阅订阅
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|站长邮箱|小黑屋|手机版|Office中国/Access中国 ( 粤ICP备10043721号-1 )  

GMT+8, 2024-6-8 19:47 , Processed in 0.091738 second(s), 24 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表