Why is it when I run this SQL String against a MS SQL db it works fine:
Code:
"SELECT USERLNAM + ' ' + USERFNAM + ' ' + Title, USRNUM "
FROM USER_TABLE;"
But when I run it against a MySQL DB I get a zero value for the "USERLNAM + ' ' + USERFNAM + ' ' + Title".
if I run the following SQL String against the MySQL DB it works fine:
Code:
"SELECT USERLNAM, USRNUM "
FROM USER_TABLE;"
How do I write this SQL String so that is works with both DB?
I am using ADO and VB6 to connect to both DB.