Nov 4, 2003 #1 edemeht Programmer Joined Nov 4, 2003 Messages 2 Location GB How can I remove or delete and access table once I have established an open connection to the database?
How can I remove or delete and access table once I have established an open connection to the database?
Nov 4, 2003 #2 BGrego Programmer Joined Jul 1, 2003 Messages 37 Location US You can use this code, where <table> is the name of the table that you want to delete Dim strSQL as String strSQL = "DROP TABLE <table>;" DoCmd.RunSQL strSQL Upvote 0 Downvote
You can use this code, where <table> is the name of the table that you want to delete Dim strSQL as String strSQL = "DROP TABLE <table>;" DoCmd.RunSQL strSQL