设为首页收藏本站Access中国

Office中国论坛/Access中国论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

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

[ADO/DAO] [求助]ADO取出一个数据表的每字段名?

[复制链接]
跳转到指定楼层
1#
发表于 2006-11-5 18:24:00 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
我在做一个表格。想要用代码ADO取某一个数据表的各个字段??要怎么做??
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享分享 分享淘帖 订阅订阅
2#
发表于 2006-11-6 03:35:00 | 只看该作者

Sub Main()
    Dim Cnxn As ADODB.Connection
    Dim rst As ADODB.Recordset
    Dim fld As ADODB.Field
    Dim strCnxn As String
    Dim strSQL As String
    Dim FieldType As String
   
    Set Cnxn = New ADODB.Connection
    strCnxn = "rovider='sqloledb';Data Source='MySqlServer';" & _
        "Initial Catalog='Pubs';Integrated Security='SSPI';"
    Cnxn.Open strCnxn
  
    Set rst = New ADODB.Recordset
    strSQL = "employee"
    rst.Open strSQL, Cnxn, , , adCmdTable
   
    Debug.Print "Fields in Employees Table:" & vbCr
   
    For Each fld In rstEmployees.Fields
        Select Case fld.Type
            Case adChar
               FieldType = "adChar"
            Case adVarChar
               FieldType = "adVarChar"
            Case adSmallInt
               FieldType = "adSmallInt"
            Case adUnsignedTinyInt
               FieldType = "adUnsignedTinyInt"
            Case adDBTimeStamp
               FieldType = "adDBTimeStamp"
        End Select

        Debug.Print "  Name: " & fld.Name & vbCr & "  Type: " & FieldType & vbCr
    Next
   
    rstEmployees.Close
    Cnxn.Close
    Set rstEmployees = Nothing
    Set Cnxn = Nothing
End Sub
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-5-9 02:55 , Processed in 0.093064 second(s), 25 queries .

Powered by Discuz! X3.3

© 2001-2017 Comsenz Inc.

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