I'm trying to do a simple removal of a table, and after my handy dandy book I came up with a drop table statement that looks like this, but it doesn't work:
SQL = "DROP TABLE " & companyName & ""
Rs.Open SQL, outsales, 1,3
It gives me a Syntax error. I've never even had the need to delete a table before, but now I do. it's possible isn't it?
companyName is a vbscript variable passed from the previous page.
SQL = "DROP TABLE " & companyName & ""
Rs.Open SQL, outsales, 1,3
It gives me a Syntax error. I've never even had the need to delete a table before, but now I do. it's possible isn't it?
companyName is a vbscript variable passed from the previous page.