다음을 통해 공유


Views Append 메서드 예제(VB)

다음 코드에서는 Command 개체 및 Views 컬렉션 추가 메서드를 사용하여 기본 데이터 원본에 새 보기를 만드는 방법을 보여 줍니다.

' 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  

참고 항목

ActiveConnection 속성(ADOX)
Append 메서드(ADOX 보기)
카탈로그 개체(ADOX)
보기 개체(ADOX)
Views 컬렉션(ADOX)