如何在MS Access表中找到列的类型?

时间:2013-07-19 14:37:43

标签: ms-access

使用内部工具并尝试了解如何在使用MS Access时查看表中列的类型。我需要知道这些类型,以便在比较相同的列标题但不同类型时我可以更好地处理问题。谢谢!

1 个答案:

答案 0 :(得分:1)

您可以使用要检查的字段的type属性。以下是所有数据类型的链接: http://msdn.microsoft.com/en-us/library/office/ff845405.aspx

还有一段代码片段可以帮助您入门。

Option Compare Database
Option Explicit

Sub GetTypes()
    Dim d As Database
    Set d = CurrentDb

    Dim t As TableDef
    Set t = d.TableDefs("Table1")

    Dim f As Field
    For Each f In t.Fields
        Debug.Print f.Name & " " & f.Type
    Next f
    Set f = Nothing

    Set t = Nothing
    Set d = Nothing
End Sub