使用 access 2000 中的 TableDef 对象 Attributes 属性
时 间:2008-11-20 13:28:13
作 者: ID:43 城市:江阴
摘 要:
正 文:
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 Usage --------------------------------- ---------- Object not appended to collection Read/write Base table Read-only Linked table Read-only
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交流群 (群号:54525238) Access源码网店
常见问答:
技术分类:
源码示例
- 【源码QQ群号19834647...(12.17)
- Access对子窗体数据进行批...(10.30)
- 最精简的组合框行来源数据快速输...(10.25)
- Access仿平台的多值选择器...(10.24)
- 【Access日期区间段查询】...(10.22)
- 【Access源码示例】VBA...(10.12)
- Access累乘示例,Acce...(10.09)
- 数值8.88,把整数8去掉,转...(10.08)
- 【Access自定义函数】一个...(09.30)
- 【Access选项卡示例】Ac...(09.09)
学习心得
最新文章
- Access系统自带的日期选择器不...(11.08)
- 分享一下Access工程中的acw...(11.07)
- Access快速开发平台--让有权...(11.04)
- Access快速开发平台--审批选...(11.01)
- ACCESS两张表先各自排序,然后...(10.31)
- Access对子窗体数据进行批量+...(10.30)
- SqlServer中如何用SQL命...(10.29)
- Access报表中的分组功能用代码...(10.28)
- 用Access计算库存结余的一个方...(10.26)
- 最精简的组合框行来源数据快速输入(...(10.25)