Here's what won't work:
SQL = "Select * from TBL-CASES"
set rs = my_conn.Execute(SQL)
However if I change the name in the database from TBL-CASES to CASES, it will work. Thus, I'm thinking it doesn't like the hyphen.
I can't really change the Database design. So, how can I include the hyphen in Select statement?
SQL = "Select * from TBL-CASES"
set rs = my_conn.Execute(SQL)
However if I change the name in the database from TBL-CASES to CASES, it will work. Thus, I'm thinking it doesn't like the hyphen.
I can't really change the Database design. So, how can I include the hyphen in Select statement?