Hello, I am trying to add a Data Source with MySQL/ODBC 3.51.
The connection to the MySQL DB is successful, however, VB uses a different SQL syntax than MySQL that throws an error every time I try to run a query.
I found the syntax in the VB generated code that looks like this:
Me
._commandCollection(0).CommandText = "SELECT * FROM `cse_db`..`user`"
The problem is the 'cse_db'..'user' portion. This is incompatible with MySQL syntax. How do I tell VB2005 to use a different SQL syntax?? Or, how do I tell MySQL to use VB2005 syntax?
Any help will be greatly appreciated.