Access开发培训
网站公告
·Access专家课堂QQ群号:151711184    ·Access快速开发平台下载地址及教程    ·欢迎加入Access专家课堂微信群!    ·如何快速搜索本站文章|示例|资料    
您的位置: 首页 > 技术文章 > Access数据库-模块/函数/VBA

判断数据库中是否存在某个字段

时 间:2021-02-06 09:11:59
作 者:某.强人   ID:73257  城市:长沙
摘 要:判断表或者查询中,是否存在某个字段。
正 文:

判断表或查询中是否存在某个字段:

Public Function FieldExists(accOctName As String, FieldName As String) As Boolean
   'accOctName 表或查询名称
   'FldName      字段名
   'Dim accQry As AccessObject
   FieldExists = False ' 默认值为不存在,除非字段存在。
  
   Dim Fld As Dao.Field
   Dim rst As Dao.Recordset
   Set rst = CurrentDb.OpenRecordset(accOctName)
   For Each Fld In rst.Fields
        If Fld.Name = FieldName Then
           FieldExists = True ' 找到这个字段
          Exit For ' 跳出循环
       End If
   Next
   rst.Close
   Set rst = Nothing
   Set Fld = Nothing
End Function


图   示


参考文章

【译文】判断数据库中是否存在某个查询—周芳




Access软件网QQ交流群 (群号:54525238)       Access源码网店

常见问答:

技术分类:

相关资源:

专栏作家

关于我们 | 服务条款 | 在线投稿 | 友情链接 | 网站统计 | 网站帮助