I am trying to build an sql statement and put it into a string. I can do this, but at character 1024 the text that follows is put on to a new line, cutting a fieldname in two. I have declared the string but perplexed. Any thoughts?
the section on vba:
mySQL = mySQL + "LEFT JOIN dbo_Contact ON "
translates to the following output, and this fails when the query is run:
LEFT JOIN dbo_Contac
t ON
the section on vba:
mySQL = mySQL + "LEFT JOIN dbo_Contact ON "
translates to the following output, and this fails when the query is run:
LEFT JOIN dbo_Contac
t ON