Mega Code Archive

 
Categories / VisualBasic Script / Access
 

Deleting a Field from a Table with SQL command

Sub DeleteField()      Dim conn As ADODB.Connection      Dim strTable As String      Dim strCol As String      On Error GoTo ErrorHandler      Set conn = CurrentProject.Connection      strTable = "myTable"      strCol = "myCol"      conn.Execute "ALTER TABLE " & strTable & " DROP COLUMN " & strCol & ";"  ExitHere:      conn.Close      Set conn = Nothing      Exit Sub  ErrorHandler:      Debug.Print Err.Number & ":" & Err.Description      Resume ExitHere  End Sub