用ADO列出某个表的所有字段、索引
查询类型 标准 =============================
adSchemaTables TABLE_CATALOG |
使用 adSchemaTables 列出数据库中所有的表
在 Microsoft Access 97 and access 2000 中以下例子展示了如何列出northwind数据库中所有的表和查询
Set rs = cn.OpenSchema(adSchemaTables) While Not rs.EOF Debug.Print rs!TABLE_NAME rs.MoveNext Wend |
只列出表用以下的代码:
Set rs = cn.OpenSchema(adSchemaTables, _ Array(Empty, Empty, Empty, "Table") |
在 Microsoft SQL Server 6.5 and 7.0 中以下代码列出Publs中所有的表和视图
Set rs = cn.OpenSchema(adSchemaTables) |
只列出所有表用:
Set rs = cn.OpenSchema(adSchemaTables, _ Array("Pubs", Empty, Empty, "Table") |
查询类型 标准字 ===============================
adSchemaColumns TABLE_CATALOG |
用 adSchemaColumns 列出表中所有字段
在 Microsoft Access 97 and access 2000 中列出 northwind.mdb 数据库 employees 表的所有字段代码如下:
Set rs = cn.OpenSchema(adSchemaColumns,Array(Empty, Empty, "Employees")
While Not rs.EOF |
注意:需要OLE DB Provider for ODBC 和 Jet ODBC Driver 和 Jet OLE DB Providers支持
在 Microsoft SQL Server 6.5 and 7.0 中列出 Pubs database 中 Authors 表的所有字段用以下代码:
Set rs = cn.OpenSchema(adSchemaColumns, Array("pubs", "dbo", "Authors") |
查询类型 标准字 ================================
adSchemaIndexes TABLE_CATALOG |
在下面例子中你必须提供一个索引名让 adSchemaIndexes querytype 使用
在 Microsoft Access 97 and access 2000 中列出 northwind.mdb 数据库的 employees 表的所有索引用以下代码:
Set rs = cn.OpenSchema(adSchemaIndexes, _ Array(Empty, Empty, Empty, Empty, "Employees")
While Not rs.EOF |
在 Microsoft SQL Server 6.5 and 7.0 中列出 Pusb 数据库 Authors 表的所有索引用以下代码:
Set rs = cn.OpenSchema(adSchemaIndexes, _ Array("Pubs", "dbo", Empty, Empty, "Authors") |
下面是一段完整的代码展示如何在 Sql Server + VB 中使用:
'Open the proper connection. Dim cn As New ADODB.Connection Dim rs As New ADODB.Recordset
Private Sub Command1_Click() End Sub
Private Sub Command2_Click()
Private Sub Command3_Click()
rs.MoveNext End Sub
Private Sub Form_Load() End Sub |
(责任编辑:admin)
- ·用DAO或ADO正确访问Access 2000
- ·Access开发网络共享版技巧(多人同时操
- ·access中ADO与DAO格式的区别和写法【总
- ·access执行操作查询的几种方法对比
- ·Access中CurrentDb().Execute 和DoCmd.
- ·[源创技巧]在ACCESS中使用代码来自动创
- ·更新访问权限 (Jet) 数据库中的 40 多
- ·【实例】ADO代码计算余额法
- ·DAO实现的子窗体记录分页显示
- ·分别使用DAO和ADO连接外部数据库和Sql
- ·怎样判断一个表是否存在于数据库中? (D
- ·处理加了密码的MDB文件
- ·谈ADO访问不同数据库的差别
- ·DAO基础(4)
- ·DAO基础(3)
- ·DAO基础(2)