使用 access 2000 中的 TableDef 对象 Attributes 属性-金宇
Access软件网QQ交流学习群(群号码198465573),欢迎您的加入!
首页 >技术文章> Access数据库-表


使用 access 2000 中的 TableDef 对象 Attributes 属性

发表时间:2008/11/20 13:28:13 评论(0) 浏览(9105)  评论 | 加入收藏 | 复制
   
摘 要:
正 文:
您可以使用 TableDef 对象的 属性 属性来确定特定的表属性。 例如,您可以使用 属性 属性来查找表是否是系统表或链接 (附加) 表。 Microsoft 提供的编程示例只,用于说明不附带任何明示或默示的保证。 这包括,但不限于,适销性或针对特定用途的适用性暗示保证。 本文假定您熟悉所演示的编程语言和工具来创建和调试过程使用。 Microsoft 支持工程师可以帮助解释某个特定过程的功能但是他们不会修改这些示例以提供额外的功能或构建过程以满足您的特殊需求。 注意 : 这篇文章中的示例代码使用 Microsoft 数据访问对象。 为使该代码正常运行,您必须引用 Microsoft DAO 3.6 对象库。 为此,在 工具 菜单中的 Visual Basic 编辑器上, 单击 引用 并确保选中了 Microsoft DAO 3.6 Object Library 复选框。

TableDef 属性

TableDef 对象的 属性 属性指定由 TableDef 对象表示在表的特征。 Attributes 属性作为一个单一 Long Integer 存储并是以下 Long 类型值常量的总和:
   Constant            Description
   ----------------------------------------------------------------------
   dbAttachExclusive   For databases that use the Microsoft Jet database
                       engine, indicates the table is a linked table
                       opened for exclusive use.

   dbAttachSavePWD     For databases that use the Jet database engine,
                       indicates the user ID and password for the
                       linked table should be saved with the connection
                       information.

   dbSystemObject      Indicates the table is a system table.

   dbHiddenObject      Indicates the table is a hidden table (for
                       temporary use).

   dbAttachedTable     Indicates the table is a linked table from a
                       non-Open Database Connectivity (ODBC) database,
                       such as Microsoft Access or Paradox.

   dbAttachedODBC      Indicates the table is a linked table from an
                       ODBC database, such as Microsoft SQL Server or
                       orACLE Server.
				
有关一个 TableDef 对象, Attributes 属性使用依赖的 TableDef ,状态下面的表所示:
   TableDef                            Usage
   ---------------------------------   ----------
   Object not appended to collection   Read/write
   Base table                          Read-only
   Linked table                        Read-only
				
,检查此属性的设置时可用于测试特定的属性的 AND 运算符。 例如,以确定一个表对象是否是系统表,执行逻辑比较 TableDef Attributes 属性和 dbSystemObject 常量。

sample Code

注意 : 这篇文章中的示例代码使用 Microsoft 数据访问对象。 为使该代码正常运行,您必须引用 Microsoft DAO 3.6 对象库。 为此,在 工具 菜单中的 Visual Basic 编辑器上, 单击 引用 并确保选中了 Microsoft DAO 3.6 Object Library 复选框。

下面的用户定义的示例函数循环遍历一个数据库中所有表并显示一个消息框列出了每个表名和表是否是系统表:
Option Compare Database   'Use database order for string comparisons.

Option Explicit


Function ShowTableAttribs()
   Dim DB As DAO.Database
   Dim T As DAO.TableDef
   Dim TType As String
   Dim TName As String
   Dim Attrib As String
   Dim I As Integer

   Set DB = CurrentDB()

   For I = 0 To DB.Tabledefs.Count - 1
      Set T = DB.Tabledefs(I)
      TName = T.Name
      Attrib = (T.Attributes And dbSystemObject)
      MsgBox TName & IIf(Attrib, ": System Table", ": Not System" & _
        "Table")
   Next I

End Function
				


Access软件网交流QQ群(群号:198465573)
 
 相关文章
中文 access 2000 中级教程  【沉香  2009/5/18】
使用快捷方式打开access 2000到特定的窗体  【82077802  2009/7/21】
[access查询]在access 2000中创建交叉表查询  【  2009/8/25】
中文ACCESS 2000 疑难解析(PDF文档/电子书)  【周芳  2012/12/15】
通过TableDef对象的RecordCount属性获取表的总记录...  【金宇  2013/3/11】
常见问答
技术分类
相关资源
文章搜索
关于作者

金宇

文章分类

文章存档

友情链接