Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
The following code demonstrates how to delete a procedure by using the Delete method of the Procedures collection.
' BeginDeleteProcedureVB
Sub Main()
On Error GoTo DeleteProcedureError
Dim cat As New ADOX.Catalog
' Open the catalog.
cat.ActiveConnection = _
"Provider='Microsoft.Jet.OLEDB.4.0';" & _
"Data Source='Northwind.mdb';"
' Delete the procedure.
cat.Procedures.Delete "CustomerById"
'Clean up.
Set cat.ActiveConnection = Nothing
Set cat = Nothing
Exit Sub
DeleteProcedureError:
Set cat = Nothing
If Err <> 0 Then
MsgBox Err.Source & "-->" & Err.Description, , "Error"
End If
End Sub
' EndDeleteProcedureVB
See Also
ActiveConnection Property (ADOX)
Catalog Object (ADOX)
Delete Method (ADOX Collections)
Procedure Object (ADOX)
Procedures Collection (ADOX)