使用内部工具并试图找出在使用 MS Access 时如何查看表中列的类型。我需要知道类型,以便在比较相同的列标题但类型不同时更好地处理问题。谢谢!
问问题
40 次
1 回答
1
您可以使用要检查的字段的类型属性。这是所有数据类型的链接: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
于 2013-07-19T14:46:56.597 回答