Anyone know the StrSQL Character limitation off the top of your head?

J

Julie Alley

I might be running in to a larger update query statement.

Has anyone else dealt with this? If you have do you recall how you worked
around it?

Thanks,

Julie
 
K

kingston via AccessMonster.com

Build the string in phases:

strSQL = ...

strSQL = strSQL & ...

strSQL = strSQL & ...
 
J

Julie Alley

Cool, I will try that - Thanks Kingston.


kingston via AccessMonster.com said:
Build the string in phases:

strSQL = ...

strSQL = strSQL & ...

strSQL = strSQL & ...
 
Top