Nov 4, 2003 #1 edemeht Programmer Nov 4, 2003 2 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 Jul 1, 2003 37 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