Freigeben über


Append-Methode für Sichten – Beispiel (VB)

Im folgenden Code wird veranschaulicht, wie Sie ein Command-Objekt und die Append-Methode der View-Auflistung verwenden, um eine neue Ansicht in der zugrunde liegenden Datenquelle zu erstellen.

' BeginCreateViewVB  
Sub Main()  
    On Error GoTo CreateViewError  
  
    Dim cmd As New ADODB.Command  
    Dim cat As New ADOX.Catalog  
  
    ' Open the Catalog  
    cat.ActiveConnection = _  
        "Provider='Microsoft.Jet.OLEDB.4.0';" & _  
        "Data Source='Northwind.mdb';"  
  
    ' Create the command representing the view.  
    cmd.CommandText = "Select * From Customers"  
  
    ' Create the new View  
    cat.Views.Append "AllCustomers", cmd  
  
    'Clean up  
    Set cat.ActiveConnection = Nothing  
    Set cat = Nothing  
    Set cmd = Nothing  
    Exit Sub  
  
CreateViewError:  
  
    Set cat = Nothing  
    Set cmd = Nothing  
  
    If Err <> 0 Then  
        MsgBox Err.Source & "-->" & Err.Description, , "Error"  
    End If  
End Sub  
' EndCreateViewVB  

Weitere Informationen

ActiveConnection-Eigenschaft (ADOX)
Append-Methode (ADOX-Sichten)
Catalog-Objekt (ADOX)
View-Objekt (ADOX)
Views-Collection (ADOX)