目录 ActiveConnection 属性示例 (VB)
将 ActiveConnection 属性设置为有效的开放连接会“打开”目录。 从打开的目录中,可以访问该目录中包含的架构对象。
' BeginOpenConnectionVB
Sub Main()
On Error GoTo OpenConnectionError
Dim cnn As New ADODB.Connection
Dim cat As New ADOX.Catalog
cnn.Open "Provider='Microsoft.Jet.OLEDB.4.0';" & _
"Data Source= 'Northwind.mdb';"
Set cat.ActiveConnection = cnn
Debug.Print cat.Tables(0).Type
'Clean up
cnn.Close
Set cat = Nothing
Set cnn = Nothing
Exit Sub
OpenConnectionError:
Set cat = Nothing
If Not cnn Is Nothing Then
If cnn.State = adStateOpen Then cnn.Close
End If
Set cnn = Nothing
If Err <> 0 Then
MsgBox Err.Source & "-->" & Err.Description, , "Error"
End If
End Sub
' EndOpenConnectionVB
将 ActiveConnection 属性设置为有效的连接字符串也会“打开”目录。
Attribute VB_Name = "Catalog"
另请参阅
ActiveConnection 属性 (ADOX)
目录对象 (ADOX)
表对象 (ADOX)
表集合 (ADOX)
Type 属性(表)(ADOX)